- 通过短信上网, 通过短信发送URL到服务器,然后服务器下载网页,base64压缩短信发回来, 客户端解压,然后渲染 https://github.com/ColdSauce/CosmosBrowserAndroid
- 把浏览器里面的位置信息都展示出来,类似坐标尺的工具 http://felixniklas.com/dimensions/
- 有意思的时间曲线 http://jackf.net/bezier-clock/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
用branch 覆盖trunk | |
svn merge --ignore-ancestry trunk_url branch_url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%Y-%m-%d %H-%M-%S |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#author : peterguo@tencent.com | |
#date : 2013.05.24 | |
#sub process do something | |
function a_sub_process { | |
echo "processing in pid [$$]" | |
sleep 1 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g++ new.cpp -I/usr/include/python2.4 -fPIC -lpython2.4 |
• nginx支持https
○ http://wangye.org/blog/archives/732/
○ 生成server.key
§ openssl genrsa -out ca.key 2048
○ 利用私钥创建根证书
openssl req -new -x509 -days 36500 -key ca.key -out ca.crt -subj "/C=CN/ST=Jiangsu/L=Yangzhou/O=Your Company Name/OU=Your Root CA"
○ openssl genrsa -out server.key 2048
openssl req -new -key server.key -out server.csr -subj "/C=CN/ST=Jiangsu/L=Yangzhou/O=Your Company Name/OU=codeboy.name/CN=codeboy.name"
/O字段内容必须与刚才的CA根证书相同;/CN字段为公用名称(Common Name),必须为网站的域名(不带www);/OU字段最好也与为网站域名,当然选择其他名字也没关系
准备目录
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.ibm.com/developerworks/cn/linux/l-cn-shell-debug/ | |
http://coolshell.cn/articles/1379.html | |
http://www.cyberciti.biz/tips/debugging-shell-script.html |
NewerOlder