上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页
摘要: ?;?.lua;/usr/ect/?;/usr/local/lua/?/?.lua require 'demo" demo demo.lua /usr/etc/demo /usr/local/lua/demo/demo.lua 匹配的时候Lua会首先将问好用虚文件名替换, 然后看是否有这样的文件存在, 如果不存在继续用同样的方法用第二个模式匹配 阅读全文
posted @ 2017-07-12 11:34 hao.ma 阅读(150) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543139.html 阅读全文
posted @ 2017-07-10 13:12 hao.ma 阅读(149) 评论(0) 推荐(0) 编辑
摘要: -- print all values of array 'a' for i,v in ipairs(a) do print(v) end -- print all keys of table 't' for k in pairs(t) do print(k) end function newCounter() local i = 0 return f... 阅读全文
posted @ 2017-07-08 23:41 hao.ma 阅读(110) 评论(0) 推荐(0) 编辑
摘要: import binascii class Hash: def crc32(self,data): rs = binascii.crc32(data) #unsigned 32-bit CRC rs = rs % (1<<32) return rs 阅读全文
posted @ 2017-06-01 17:55 hao.ma 阅读(1245) 评论(0) 推荐(0) 编辑
摘要: 开发的go程序,暂时没有更好的graceful启动方式, 使用supervisor来守护go进程, 同时每次上线部署时使用 restart 服务器的Python版本是2.4 supervisor 的依赖三个Python包 http://www.supervisord.org/installing.h 阅读全文
posted @ 2017-03-31 14:59 hao.ma 阅读(310) 评论(0) 推荐(0) 编辑
摘要: function variance ($a) { /** variable and initializations */ $the_variance = 0.0; ... 阅读全文
posted @ 2017-01-04 15:16 hao.ma 阅读(218) 评论(0) 推荐(0) 编辑
摘要: you can check the web status by this url : http://localhost:6060/debug/pprof/ pprof info: https://github.com/g0hacker/go_command_tutorial/blob/master/ 阅读全文
posted @ 2016-11-08 17:27 hao.ma 阅读(740) 评论(0) 推荐(0) 编辑
摘要: //one reason is whitespace ciphertext = strings.Replace(ciphertext, " ", "", -1) k, err0 := base64.StdEncoding.DecodeString(ciphertext) 阅读全文
posted @ 2016-11-02 17:45 hao.ma 阅读(11405) 评论(0) 推荐(0) 编辑
摘要: http://supervisord.org/ 阅读全文
posted @ 2016-10-31 16:58 hao.ma 阅读(100) 评论(0) 推荐(0) 编辑
摘要: PROPATH="/var/www/html/" PROGRAM="vertical" LOGNAME="/tmp/monitor.vertical.go.log" while true ; do NUM=`ps aux | grep ${PROGRAM} | grep -v grep | wc -l` echo ${NUM} if [ "${NUM}" -lt "1... 阅读全文
posted @ 2016-10-21 13:47 hao.ma 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页