摘要: netstat -nltp |grep xxx 阅读全文
posted @ 2014-05-16 11:30 taotaowill 阅读(329) 评论(0) 推荐(0) 编辑
摘要: ajax POST 包含文件域的form表单 1 $("#addPatchsetForm").ajaxSubmit({ 2 target: 'aaa', 3 type: ... 阅读全文
posted @ 2014-05-12 10:28 taotaowill 阅读(158) 评论(0) 推荐(0) 编辑
摘要: //回到顶部 $(function() { $.fn.backToTop = function(options) { var defaults = { s... 阅读全文
posted @ 2014-05-08 17:54 taotaowill 阅读(146) 评论(0) 推荐(0) 编辑
摘要: $.history.init(function(hash){ alert(''hash change to" + hash);});/* * jQuery history plugin * * The MIT License * * Copyright (c) 2006-2009 Taku S... 阅读全文
posted @ 2014-04-30 09:50 taotaowill 阅读(2367) 评论(0) 推荐(0) 编辑
摘要: document.referrer 阅读全文
posted @ 2014-04-28 10:52 taotaowill 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 输入变量到varset /var var=var: 阅读全文
posted @ 2014-04-07 21:58 taotaowill 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/coolhty/article/details/7351255 阅读全文
posted @ 2014-04-04 01:13 taotaowill 阅读(92) 评论(0) 推荐(0) 编辑
摘要: SQLObjectFormencodesetuptools 阅读全文
posted @ 2014-04-03 18:15 taotaowill 阅读(170) 评论(0) 推荐(0) 编辑
摘要: First download, build and install sqlite3 with a--prefix. Then build python with same prefix , it will find sqlite installation and will build _sqlite3 module.$ mkdir -p ~/applications/src$ cd ~/applications/src$ wget http://www.sqlite.org/sqlite-autoconf-3070900.tar.gz$ tar xvvf sqlite-autoconf-307 阅读全文
posted @ 2014-04-03 18:11 taotaowill 阅读(746) 评论(0) 推荐(0) 编辑
摘要: 一、在Linux中有机器A[192.168.1.1],B[192.168.1.2]。现想A通过ssh免密码登录到B。第一步,在A机下生成公钥/私钥对。ssh-keygen -t rsa直接三次回车,它将在~/下生成.ssh目录,.ssh下有id_rsa和id_rsa.pub。第二步,把A机下的id_rsa.pub复制到B机下完成后还需要将id_rsa.pub内容追加到B机的.ssh/authorized_keys文件里。由于还没有免密码登录的,所以这里还要输入密码。 输入B机器的登录密码后,文件就复制到了B机器的~/目录。第三步、B机把从A机复制的id_rsa.pub添加到.ssh/autho 阅读全文
posted @ 2014-04-03 10:32 taotaowill 阅读(457) 评论(0) 推荐(0) 编辑