[linux]

1. linux 查看文件夹大小

du  vs df


2. linux ftp上传下载文件

http://ju.outofmemory.cn/entry/29694

http://blog.csdn.net/hnlyyk/article/details/49862781

http://wangwei007.blog.51cto.com/68019/983638

http://blog.sina.com.cn/s/blog_6b7bda7f0100lov1.html


3.linux 安装paramiko

http://www.paramiko.org/installing.html


[shell]

1.shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory

http://xafc2370.iteye.com/blog/1484686

http://chenzhou123520.iteye.com/blog/1832890


[security]


Chinese ISPs are redirecting users legitimate traffic to malicious sites/ads

http://securityaffairs.co/wordpress/44893/hacking/chinese-isps-serve-malware-ads.html


[python]

  1. ConfigParser模块

    http://793404905.blog.51cto.com/6179428/1545878

2. fileinput模块

http://blog.csdn.net/jerry_1126/article/details/41926407


3.ftplib模块


4.python GUI 编程(Tkinter)

http://www.runoob.com/python/python-gui-tkinter.html


5.python 替换文件内容

http://blog.csdn.net/hometohw/article/details/7483404


6.list比较

 python is & ==区别

    is is the identity comparison. #比较引用是否相同

    == is the equality comparison. #比较内容是否相同

    cmp() 方法用于比较两个列表的元素

        cmp(list1,list2)

    如果比较的元素是同类型的,则比较其值,返回结果。

    如果两个元素不是同一种类型,则检查它们是否是数字。

  • 如果是数字,执行必要的数字强制类型转换,然后比较。

  • 如果有一方的元素是数字,则另一方的元素"大"(数字是"最小的")

  • 否则,通过类型名字的字母顺序进行比较。

    如果有一个列表首先到达末尾,则另一个长一点的列表"大"。

    如果我们用尽了两个列表的元素而且所 有元素都是相等的,那么结果就是个平局,就是说返回一个 0。