摘要:
今天看了下系统环境,不少python库都有了更新,再用旧版本库可能已经不适合了,就想把所有的库都更新到最新版本。查看系统里过期的python库,可以用pip命令pip list #列出所有安装的库pip list --outdated #列出所有过期的库对于列出的过期库,pip也提供了更新的命令p... 阅读全文
摘要:
官方API文档地址:https://nodejs.org/api/net.html创建一个server.js 1 var net = require('net'); 2 var PORT = 8099; 3 var HOST = '127.0.0.1' 4 5 var server = net.... 阅读全文
摘要:
http://toastergremlin.com/?p=308Sometimes when using a wildcard SSL or Unified Communications Certificate (UCC) it is necessary to add multiple https ... 阅读全文
摘要:
http://ejohn.org/blog/javascript-micro-templating/I’ve had a little utility that I’ve been kicking around for some time now that I’ve found to be quite useful in my JavaScript application-building endeavors. It’s a super-simple templating function that is fast, caches quickly, and is easy to use. I 阅读全文
摘要:
安装说明:http://tech.163.com/06/0206/11/299AMBLT0009159K.html按照上面一步步去做,到最后一步的时候却提示说failed to open the winNT service manager,很是不解,通过在csdn上发帖询问,终于知道了答案:原来是软件安装时与windows7的“用户账户控制”(UAC)冲突,只要先关闭UAC(控制面板-用户账户和家庭安全-系统和安全-行动中心,里面有“更改用户账户控制设置”,改成从不通知,完成后会提示重启,此时需要重启一下)再安装就没问题了,安装完后可以再修改回来。http://hi.baidu.com/pen 阅读全文