摘要:
?;?.lua;/usr/ect/?;/usr/local/lua/?/?.lua require 'demo" demo demo.lua /usr/etc/demo /usr/local/lua/demo/demo.lua 匹配的时候Lua会首先将问好用虚文件名替换, 然后看是否有这样的文件存在, 如果不存在继续用同样的方法用第二个模式匹配 阅读全文
摘要:
http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543139.html 阅读全文
摘要:
-- 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... 阅读全文
摘要:
import binascii class Hash: def crc32(self,data): rs = binascii.crc32(data) #unsigned 32-bit CRC rs = rs % (1<<32) return rs 阅读全文
摘要:
开发的go程序,暂时没有更好的graceful启动方式, 使用supervisor来守护go进程, 同时每次上线部署时使用 restart 服务器的Python版本是2.4 supervisor 的依赖三个Python包 http://www.supervisord.org/installing.h 阅读全文
摘要:
function variance ($a) { /** variable and initializations */ $the_variance = 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/ 阅读全文
摘要:
//one reason is whitespace ciphertext = strings.Replace(ciphertext, " ", "", -1) k, err0 := base64.StdEncoding.DecodeString(ciphertext) 阅读全文
摘要:
http://supervisord.org/ 阅读全文
摘要:
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... 阅读全文