摘要: Python 之禅>>> import thisThe Zen of Python, by Tim PetersBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than complicated.Flat is better than nested.Sparse is better than dense.Readability counts.Special cases aren't special 阅读全文
posted @ 2011-08-18 15:21 程序缘桑勤 阅读(283) 评论(0) 推荐(1) 编辑
摘要: --重命名表rename table t_softwareport to software_port;--建立外键alter table software_port add constraint fk_software_port_softwareprocessid foreign key (softwareprocessid)references software_process (id) on delete restrict on update restrict;--删除列alter table software_typedrop column upid,drop column orderi 阅读全文
posted @ 2011-08-18 15:14 程序缘桑勤 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 在Django自带后台中经常会出现编码错误:Incorrect string value: '\xE7\xAE\x80\xE5\x8D\x95...' for column 'message' at row 1 。需要修改admin表的中的编码,才能保证数据正确显示、插入、修改、删除。在自己的数据库中插入下面句子改变表中某一列的数据类型:1ALTER TABLE auth_message MODIFY COLUMN message VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;如 阅读全文
posted @ 2011-08-18 14:01 程序缘桑勤 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 我们反复说打字是一种技能,并不是所有的人都可以达到飞速击键的状态,一个打字高手也不可能在历次比赛中都发挥得同样出色。对于大部分人来说,达到每分钟200击的速度不是高不可攀,但是将错率控制在3‰就会淘汰大部分人 阅读全文
posted @ 2011-08-18 13:33 程序缘桑勤 阅读(599) 评论(0) 推荐(1) 编辑