03 2011 档案
canvasnode 托管地址
摘要:将我的canvasnode放到google code上进行托管了。项目地址如下:http://code.google.com/p/canvas-node/更详尽的说明文档会在这几天整理出来。 阅读全文
posted @ 2011-03-30 13:20 真阿当 阅读(95) 评论(0) 推荐(0)
twisted学习资料
摘要:http://www.linux-field.com/?cat=5http://www.linux-field.com/?p=88http://www.linux-field.com/?p=94http://hi.baidu.com/peaksst/blog/item/be30c0c2eb697b... 阅读全文
posted @ 2011-03-29 11:43 真阿当 阅读(86) 评论(0) 推荐(0)
google的javascript编码规范
摘要:原文地址:http://docs.kissyui.com/docs/html/styleguide/google/javascriptguide.xml 阅读全文
posted @ 2011-03-24 12:57 真阿当 阅读(73) 评论(0) 推荐(0)
python 函数相关
摘要:[ 装饰器:]#!/usr/bin/env/ pythonfrom time import ctimedef tsfunc(func):~ def wrappedFunc():~ ~ print '[%s] %s() called' % ( ctime(), func.__name__)~ ~ r... 阅读全文
posted @ 2011-03-18 15:27 真阿当 阅读(113) 评论(0) 推荐(0)
python 数字相关
摘要:工厂:int(), long(), float()绝对值: abs()abs(3) #=> 3 abs(-3) #=> 3浮点型四舍五入: round()round(3) #=> 3.0round(3.45) #=> 3.0round(-3.49) #=> -3.0round(-3.49,1) #... 阅读全文
posted @ 2011-03-14 22:20 真阿当 阅读(124) 评论(0) 推荐(0)
python推荐的模块结构
摘要:(1)起始行(2)模块文档(3)模块导入(4)(全局)变量定义(5)类定义(6)函数定义(7)主程序===============================#/usr/bin/env python"this is a test module"import sysimport osdebug ... 阅读全文
posted @ 2011-03-13 16:30 真阿当 阅读(106) 评论(0) 推荐(0)
[转] 学习服务器端的JavaScript_Node.js
摘要:原文地址:http://www.grati.org/?p=181http://blog.csdn.net/zhangxin09/archive/2010/08/25/5836777.aspx 阅读全文
posted @ 2011-03-11 21:54 真阿当 阅读(71) 评论(0) 推荐(0)
python 处理websocket
摘要:http://pypi.python.org/pypi/websocket-client/0.4http://eventlet.net/doc/examples.html#websocket-server-examplehttps://github.com/mtah/python-websocke... 阅读全文
posted @ 2011-03-11 20:45 真阿当 阅读(210) 评论(0) 推荐(0)
django处理websocket
摘要:原文地址:http://pypi.python.org/pypi/django-websocket 阅读全文
posted @ 2011-03-11 14:23 真阿当 阅读(135) 评论(0) 推荐(0)
google的python编码规范
摘要:原文地址:http://google-styleguide.googlecode.com/svn/trunk/pyguide.html 阅读全文
posted @ 2011-03-08 12:35 真阿当 阅读(115) 评论(0) 推荐(0)