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