04 2013 档案

转:ubuntu下配置Nginx+Django+flup+MySQL
摘要:http://www.zeuux.com/blog/content/3316/http://www.zeuux.com/blog/content/3173/ 阅读全文

posted @ 2013-04-28 10:11 方乙 阅读(80) 评论(0) 推荐(0)

openstack 的几篇文章
摘要:Ubuntu下单节点安装:http://longgeek.com/2013/03/11/openstack-grizzly-g3-for-ubuntu-12-04-all-in-one-installation/http://hi.baidu.com/lishigang333/item/9ee153cd9166405cbcef69ebQuantum工作流http://blog.csdn.net/lynn_kong/article/details/8784449 阅读全文

posted @ 2013-04-28 09:24 方乙 阅读(152) 评论(0) 推荐(0)

python的成员方法,类方法和静态方法
摘要:转自:http://www.zeuux.com/blog/content/3030/示例代码:>>> class A ( object ): ... def foo ( self , x ): ... print "executing foo(%s,%s)" %( self , x ) ... ... @classmethod ... def class_foo ( cls , x ): ... print "executing class_foo(%s,%s)" %( cls , x ) ... ... @sta... 阅读全文

posted @ 2013-04-27 17:26 方乙 阅读(281) 评论(0) 推荐(0)

正则表达式总结
摘要:http://deerchao.net/tutorials/regex/regex.htm这篇文章的阅读笔记。谢谢deerchao。http://www.geeksquare.net/?p=139Ubuntu下的正则表达是测试工具:kiki。sudo apt-get install kiki1.普通字符和特殊字符正则表达式用来进行字符串匹配。我理解为它表达了一个通用字符串,因此能够匹配多个字符串。普通字符:就表示自己。当然也匹配自己。例如Lucy就匹配Lucy特殊字符:也叫元字符。这钟字符具有特殊的意义。不再匹配它本身了。例如. *等。如果要匹配它们自身就要加转义字符\,取消这些字符的特殊意义 阅读全文

posted @ 2013-04-27 11:06 方乙 阅读(184) 评论(0) 推荐(0)

Python locals和globals
摘要:http://www.codesky.net/article/201111/165285.html 阅读全文

posted @ 2013-04-26 18:17 方乙 阅读(113) 评论(0) 推荐(0)

PYTHON正则表达式 re模块使用说明
摘要:http://www.jb51.net/article/27174.htm 阅读全文

posted @ 2013-04-26 18:13 方乙 阅读(112) 评论(0) 推荐(0)