1.对序列进行分组的函数(摘自web.py源码utils.py文件中) 1 def
group(seq, size): 2 """ 3 Returns an iterator over a series of lists of length
size from iterable. ...
分类:
编程语言 时间:
2014-05-28 04:21:00
阅读次数:
365
第一步:sqlmap基于Python,所以首先下载:http://yunpan.cn/QiCBLZtGGTa7U 访问密码
c26e第二步:安装Python,将sqlmap解压到Python根目录下;第三步:小试牛刀,查看sqlmap版本:python
sqlmap/sqlmap.py -h第四步:...
分类:
数据库 时间:
2014-05-27 16:27:17
阅读次数:
448
for i in range(1,10): for j in range(1,i+1): print
(" ".join(["%d*%d=%d" %(j,i,i*j)]))[root@miller qinbin]# python test.py
1*1=11*2=2 2*2=41*3=3 2...
分类:
编程语言 时间:
2014-05-26 20:34:16
阅读次数:
388
解决方案:1.在对应的模板中, 为每个POST的form添加一行代码:{% csrf_token
%}。 如下所示: {% csrf_token %} {{ form.as_table }} 2.在对应的views.py中, 使用
django.templa...
分类:
其他好文 时间:
2014-05-26 10:03:05
阅读次数:
276
10001st prime
Problem 7
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
What is the 10 001st prime number?
使用埃拉托斯特尼筛法,不懂得自行Wiki
我的py...
分类:
其他好文 时间:
2014-05-26 05:35:25
阅读次数:
248
下载没有任何问题的mysqdb
http://www.codegood.com/archives/41创建一个新的app。python manage.py startapp books2
激活app的方法:编辑 settings.py 文件, 找到 INSTALLED_APPS 设置。 INSTAL...
分类:
数据库 时间:
2014-05-26 01:24:44
阅读次数:
315
virtualenv主要是用来管理Python的不同版本,记录windown下的安装过程。1、安装python2.7,设置好path环境变量:\python2.7;\python2.7\Scripts2、安装setuotools,主要是run:ez_setup.py
进行自动安装3、下载virtua...
分类:
编程语言 时间:
2014-05-26 00:28:56
阅读次数:
410
前一篇文章大致理解了动作系统的结构,今天先学习一个简单的即时动作如何使用。首先使用配置好的环境创建一个项目DemoActionInstant命令:python
create_project.py -project DemoActionInstant -package demo.game.action...
分类:
其他好文 时间:
2014-05-25 20:38:14
阅读次数:
258
1 Command类中的rebalnace方法
在上篇文章中讲解了,创建Ring已经为Ring添加设备,在添加设备后需要对Ring进行平衡,平衡
swift-ring-builder object.builder rebalance
首先会调用swift/cli/ringbuilder.py中方法,在main方法中首先会判读/etc/swift文件夹下是否有object.builder文...
分类:
其他好文 时间:
2014-05-25 00:41:43
阅读次数:
359
修改common.py把 -Xmx4096m 中的 4096改成2048具体做法:1.
patchrom目录下搜索文件common.py 2.文档中搜索-Xmx4096m 3.-Xmx4096m 改为 -Xmx2048m
分类:
编程语言 时间:
2014-05-24 09:48:41
阅读次数:
252