摘要: 参考因为服务都以restful api的方式提供给外界访问,于是又要看WSGI,要用到PasteDeploy库,但是感觉资料有些难懂尤其是paste.ini的使用上,下面几篇还算不错[1]http://wanglianghuaihua.blog.163.com/blog/static/5425153... 阅读全文
posted @ 2014-08-12 21:58 卖程序的小歪 阅读(545) 评论(0) 推荐(0) 编辑
摘要: Ubuntu出的云环境镜像(http://uec-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img),已经加入了cloud-init,可以在启动的使用扩展分区,注入keypair。但默认情况下只能通过ssh... 阅读全文
posted @ 2014-08-12 16:18 卖程序的小歪 阅读(2550) 评论(0) 推荐(0) 编辑
摘要: 一直想好好了解一下awk的,不过以前总感觉看的资料太深了,找到两篇浅显易懂的:[1]http://blog.csdn.net/andyxm/article/details/5964071[2]http://blog.csdn.net/wklken/article/details/65556940. ... 阅读全文
posted @ 2014-08-12 10:56 卖程序的小歪 阅读(207) 评论(0) 推荐(0) 编辑
摘要: class Solution {public: int longestValidParentheses(string s) { vector stack; int maxlen = 0; int curlen = 0; int last ... 阅读全文
posted @ 2014-08-12 10:18 卖程序的小歪 阅读(146) 评论(0) 推荐(0) 编辑