星期一, 4月 12, 2010

[Python] 超牛framework Twisted!!

http://twistedmatrix.com/trac/
這是網站

請先看FAQ
http://twistedmatrix.com/trac/wiki/FrequentlyAskedQuestions

如果要寫server service的話,裡面有很多例子可以參考
http://twistedmatrix.com/documents/current/core/howto/application.html

星期六, 4月 10, 2010

[Python] python egg 安裝

常常不知道怎麼安裝python的package齁~~~

照做~~~~

http://www.ibm.com/developerworks/cn/linux/l-cppeak3.html

星期四, 4月 01, 2010

[Python] String to JSON轉換必殺技

http://eishn.blog.163.com/blog/static/65231820070181041204/

如果你不想裝JSON module,請服用~~~~^^
json = lambda s, encoding = sys.getdefaultencoding(): repr(unicode(s, encoding))[1:]

PS. 據說最後那行代碼很容易令人摸不著頭腦, 你不妨把json() 換成(string) escape() 來理解。
如果你用escape 來定義這行代碼, 你只能得到escape;
如果你用 json 來命名, 你得到了 JSON。