学习资料汇总

汇总一下网上学习资料,后续继续补充:

Go
  1. Go语言标准库文档
    https://studygolang.com/pkgdoc
  2. Effective Go
    https://golang.org/doc/effective_go.html
  3. nsq官方文档
    http://nsq.io/overview/design.html
  4. go的一组面试题,有助于加深理解
    https://blog.csdn.net/weiyuefei/article/details/77963810
  5. 官网 go指南
    https://tour.go-zh.org/list
Python
  1. 官方文档
    https://docs.python.org/2.7/
  2. requests文档
    http://www.python-requests.org/en/master/
  3. Raymond Hettinger的网站,关于super()的讨论很值得一看
    https://rhettinger.wordpress.com/
  4. python魔法函数
    http://pyzh.readthedocs.io/en/latest/python-magic-methods-guide.html
  5. python内存管理
    https://www.cnblogs.com/vamei/p/3232088.html
  6. 必看的python视频
    http://python.jobbole.com/82605/
  7. python guide
    http://docs.python-guide.org/en/latest/
  8. python2 编码为什么那么蛋疼
    https://www.zhihu.com/question/31833164
操作系统
  1. 网易云课堂 李治军老师系列课程
  2. 实验环境
  • https://github.com/Wangzhike/HIT-Linux-0.11
  • https://blog.csdn.net/longintchar/article/details/78827886
  1. 实验环境搭建
    https://blog.csdn.net/longintchar/article/details/78827886
    我的实验代码地址
    https://github.com/gpeijun/Linux-0.11-exp
  2. systemd入门
    http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-part-two.html
中间件
  1. 各类MQ比较 https://blog.csdn.net/h2604396739/article/details/81136527
hadoop
  1. 安装
    https://wangchangchung.github.io/2017/09/28/Ubuntu-16-04%E4%B8%8A%E5%AE%89%E8%A3%85Hadoop%E5%B9%B6%E6%88%90%E5%8A%9F%E8%BF%90%E8%A1%8C/
  2. drill
    https://drill.smartloli.org/1.%E5%BC%80%E5%A7%8B/1.Introduction%20%E4%BB%8B%E7%BB%8D.html
数据竞争(data race)
  1. 一篇关于数据竞争的文章,有助于理解什么情况下要加锁,以及编译器的优化是如何导致数据竞争的
    https://software.intel.com/en-us/blogs/2013/01/06/benign-data-races-what-could-possibly-go-wrong
机器学习
  1. Andrew Ng 机器学习课程
    https://study.163.com/course/courseMain.htm?courseId=1004570029
  2. 深度学习
    https://mooc.study.163.com/smartSpec/detail/1001319001.htm
    我的实验代码
    https://github.com/gpeijun/deeplearning.ai
sip协议
  1. sip路由字段与机理
    https://blog.csdn.net/dingpeng1978/article/details/2652380
  2. sip常见问题与解答
    http://blog.sina.com.cn/s/blog_a34ac27e010159fl.html
  3. 协议相关
    RFC3261 SIP
    RFC2833 DTMF
    RFC3550 RTP
mysql
  1. MySQL索引背后的数据结构及算法原理
    http://blog.codinglabs.org/articles/theory-of-mysql-index.html
  2. MySQL悲观锁乐观锁
    https://www.jianshu.com/p/f5ff017db62a
  3. MySQL 隔离级别
    https://www.cnblogs.com/huanongying/p/7021555.html
  4. MySQL锁
    https://blog.csdn.net/bigtree_3721/article/details/73731377
  5. MySQL通过MVCC+next_key才解决了幻读
    http://blog.sina.com.cn/s/blog_499740cb0100ugs7.html
pycharm破解

https://blog.csdn.net/mzl87/article/details/79632180

你可能感兴趣的:(学习资料汇总)