linux系统nginx -V
2016-03-28在安装有nginx的linux系统上查nginx安装在哪里。 阅读全文...
nginx配置中级证书
2015-12-30nginx没有配置中级证书导致chrome浏览ssl网址时报错 阅读全文...
tail实例
2015-12-08tail -n +2; 阅读全文...
find查找大文件或不区分大小写
2015-11-13不区分大小写,排查查询 阅读全文...
Win7/Win8.1免费升级Win10官方途径:KB3035583
2015-08-18Win7 SP1和Win8.1用户被推送了KB3035583补丁,如果不想看到右下角提示升级win10的图标,可以卸载这个补丁。 阅读全文...
sed -e "/grep/d"
2015-08-12sed -e "/grep/d"相当于grep -v grep 阅读全文...
sqrt编译出错
2015-07-07gcc -lm -o a a.c,lm会链接math.c 阅读全文...
shell脚本反向输出字符串
2015-06-30先计算字符串长度,然后按照每一位输出,再合并。 阅读全文...
python自动给数字前面补0的方法
2015-06-29python中有一个zfill方法用来给字符串前面补0,对于纯数字,我们也可以通过格式化的方式来补0 阅读全文...
linux bogomips
2015-06-17The number of million times a second a processor can do absolutely nothing. The Linux OS measures BogoMIPS at startup in order to calibrate some soft timing loops that will be used later on; details at the BogoMIPS mini-HOWTO. The name Linus chose, of course, is an ironic comment on the uselessness of all other MIPS figures. 阅读全文...
现货黄金(伦敦金)如何换算中国黄金
2015-06-17例如今天报价X美元/盎司,1美元可以换算人民币A元,1金盎司=31.1035克。 阅读全文...
python获取微信公众号OPENID
2015-06-16OPENID不可见,我们有什么好办法? 阅读全文...
python获取微信公众号Access_Token
2015-06-16获取微信公众号Access_Token 阅读全文...
Python微信红包算法
2015-06-16红包分发随机额度差别比较大。 阅读全文...
删除乱码文件
2015-06-10ls |head -1 |xargs rm -rf 阅读全文...