摘要: 【转】http://blog.csdn.net/windone0109/article/details/8996184 在python中用import或者from…import来导入相应的模块。模块其实就是一些函数和类的集合文件,它能实现一些相应的功能,当我们需要使用这些功能的时候,直接把相应的模块导入到我们的程序中,就可以使用了。这类似于C语言中的include头文件。 import sys ... 阅读全文
posted @ 2015-02-25 18:47 维博.WILBUR 阅读(1033) 评论(0) 推荐(0) 编辑
摘要: 解压缩*.tar.gz tar -zxvf zippedfilename.tart.gz 切换到root用户(-表示同root登录,带有root的环境变量) su - 切换回其他用户(username为要切换到的用户名) su - username 常见问题及解决方法 问题:xxxx is not in the sudoers file. This incident will be repor... 阅读全文
posted @ 2015-02-25 16:50 维博.WILBUR 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 测试驱动的开发(TDD,Test Driven Development)的核心理念,是要使得重构(refactoring)更为有效,而不是创建更多的测试。 对一个有着长生命周期的项目来讲,在它的第一个版本,通常具有好的、干净的架构。随着版本的不断更新,会引入越来越多旁门左道的变通方法(hacky workaround)、捷径(short cuts)、不一致的接口(inconsistent inte... 阅读全文
posted @ 2015-02-25 11:02 维博.WILBUR 阅读(676) 评论(0) 推荐(3) 编辑