heidsoft

Results 289 comments of heidsoft

task任务执行 https://github.com/RichardKnop/machinery

http://masnun.rocks/2016/11/01/distributed-task-processing-in-golang/

https://www.zybuluo.com/NickYu/note/61130 https://github.com/HeidCloud/system-design-primer https://github.com/donnemartin/system-design-primer#representational-state-transfer-rest https://github.com/donnemartin/system-design-primer#index-of-system-design-topics http://masnun.rocks/2016/11/01/distributed-task-processing-in-golang/ http://robertgreiner.com/2014/08/cap-theorem-revisited/

# 深入go语法 https://github.com/qcrao/Go-Questions https://github.com/heidsoft/go-deep-dive/tree/master/demos/concurrency https://medium.com/rungo/the-anatomy-of-functions-in-go-de56c050fe11 https://golang.org/src/go/doc/example.go https://www.youtube.com/watch?v=c5wodlqGK-M

https://github.com/oldratlee

``` git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' 取消 git config --global --unset http.proxy git config --global...

# 子模块处理 ``` #!/bin/sh set -e git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | while read path_key path do url_key=$(echo $path_key | sed 's/\.path/.url/') url=$(git config -f .gitmodules --get "$url_key") git...

# http https 保存认证信息 ``` https方式每次都要输入密码,非常不爽 按照如下设置可只输入一次 记住密码(默认15分钟): git config --global credential.helper cache 自己定义时间(一小时后失效): git config credential.helper 'cache --timeout=3600' 永久存储密码: git config --global credential.helper store ```

https://github.com/mylxsw/growing-up/blob/master/doc/tcpdump%E7%AE%80%E6%98%8E%E6%95%99%E7%A8%8B.md#%E4%BD%BF%E7%94%A8%E6%BA%90%E5%92%8C%E7%9B%AE%E7%9A%84%E5%9C%B0%E5%9D%80%E8%BF%87%E6%BB%A4

http://joshitech.blogspot.com/2014/11/nginx-mutual-two-way-ssl-authentication.html