码迷,mamicode.com
首页 >  
搜索关键字:raw    ( 4642个结果
android 开发高仿QQ表情选择、输入框
首先大家看效果:用到的文件有(源码文件有,只包含表情、输入框等有关文件,工程项目是公司项目,恕不公开啦):res: drawable/face_del_icon.xml drawable/iv_face.xml drawable-ldpi下所有图片 raw下的配置文件 layout/item_fac...
分类:移动开发   时间:2015-04-08 19:49:50    阅读次数:158
编写登录接口
#!/usr/bin/python#_*_coding:utf-8_*_importsysretry_limit=3retry_count=0account_file=‘account.txt‘lock_file=‘account_lock.txt‘whileretry_count<retry_limit:#只要重试不超过三次就不断循环username=raw_input(‘\033[31;1mUsername:\033[0m‘)lock_check=file(lock_fi..
分类:其他好文   时间:2015-04-08 16:46:03    阅读次数:168
Python连接MySQL数据库
Python中raw_input与input的区别 raw_input获取用户输入之后的返回结果是一个字符串类型数据 获取用户输入,转化为字符串类型,然后返回 (此图来自文档 Python-2.7.6) input获取用户输入之后的返回值是一个数值型的数据 等价于eval(raw_input(提示信...
分类:数据库   时间:2015-04-08 12:57:29    阅读次数:129
JavaScript 之 使用 XMLHttpRequest 上传文件
1 2 3 4 js脚本:https://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.htmlhttp://dev.w3.org/2006/webapi/FileAPI/ 1 window.o...
分类:编程语言   时间:2015-04-07 00:27:44    阅读次数:228
转 Android raw文件与assets文件区别
*res/raw和assets的相同点:1.两者目录下的文件在打包后会原封不动的保存在apk包中,不会被编译成二进制。*res/raw和assets的不同点:1.res/raw中的文件会被映射到R.java文件中,访问的时候直接使用资源ID即R.id.filename;assets文件夹下的文件不会...
分类:移动开发   时间:2015-04-06 17:10:45    阅读次数:151
codehouse
1 1 # 整数部分十进制转二进制 2 2 3 3 num = int(raw_input(">>>")) 4 4 5 5 if num 0:14 14 result = str(num%2) + result15 15 num = num/216 16 if isN...
分类:其他好文   时间:2015-04-05 11:54:44    阅读次数:155
$GLOBALS['HTTP_RAW_POST_DATA']与$_POST的区别
$HTTP_RAW_POST_DATAThe RAW / uninterpreted HTTP POst information can be accessed with:$GLOBALS['HTTP_RAW_POST_DATA']This is useful in cases where the ...
分类:Web程序   时间:2015-04-05 09:00:24    阅读次数:114
OSX下brew安装docker(boot2docker)
ruby?-e?"$(curl?-fsSL?https://raw.githubusercontent.com/Homebrew/install/master/install)" brew install brew-cask docker boot2docker brew cask install?virtualbox boot2docker up &&?eval "$(boo...
分类:其他好文   时间:2015-04-05 01:16:46    阅读次数:145
Python与shell的交互方式
hello.py代码如下:#!/usr/bin/python print "hello, world!"TestInput.py代码如下:#!/usr/bin/python str = raw_input() print("input string is: %s" % str)1.os.system(cmd)这种方式只是执行shell命令,返回一个返回码(0表示执行成功,否则表示失败)retcode...
分类:编程语言   时间:2015-04-04 12:19:22    阅读次数:227
在DDwrt下对Firmware操作的一些技巧
[备注]这里是对ddwrt的操作,事实上,对openwrt同样也适用。基础知识:1、MTDMTD是Memory Technology Devices的缩写,它主要提供了一个raw Flash设备和Linux系统之间的抽象层,这确保了即使使用不同的Flash芯片,Linux都是在用同样的API进行操作...
分类:其他好文   时间:2015-04-03 17:12:39    阅读次数:162
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!