├── .drone.yml ├── .gitignore ├── README.md ├── articles ├── 一站式学习Wireshark.pdf └── 二进制的秘密.pdf ├── cheat-sheet ├── Wireshark_Display_Filters.pdf ├── git-cheat-sheet.png ├── py-regular-ex-cheat-sheet.png ├── tcpdump-cheat-sheet.pdf ├── tcpdump.pdf ├── tmux-cheat-sheet.png └── vi-cheat-sheet-Ops.jpg └── ppt ├── 50_tips_and_tricks_for_mongodb_developers.pdf ├── Linux-Perf-Tuning.pdf ├── Linux-Profiling-at-Netflix.pdf ├── Linux-storage-stack-diagram_v3.17.png ├── MySQL技术分享:一步到位实现MySQL优化 - 20141024.pdf ├── TCP协议疑难杂症全景解析.pdf ├── TLCL-13.07.pdf ├── facebook-app-headers-learn.pdf ├── mongodb_applied_design_patterns.pdf ├── php-production-tuning.pdf ├── sed-and-awk.pdf └── 正确使用Android性能分析工具——TraceView _ bxbxbai_Android开发笔记.pdf /.drone.yml: -------------------------------------------------------------------------------- 1 | image: go1.3 2 | script: 3 | - echo "Hello, Notebook" 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/README.md -------------------------------------------------------------------------------- /articles/一站式学习Wireshark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/articles/一站式学习Wireshark.pdf -------------------------------------------------------------------------------- /articles/二进制的秘密.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/articles/二进制的秘密.pdf -------------------------------------------------------------------------------- /cheat-sheet/Wireshark_Display_Filters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/Wireshark_Display_Filters.pdf -------------------------------------------------------------------------------- /cheat-sheet/git-cheat-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/git-cheat-sheet.png -------------------------------------------------------------------------------- /cheat-sheet/py-regular-ex-cheat-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/py-regular-ex-cheat-sheet.png -------------------------------------------------------------------------------- /cheat-sheet/tcpdump-cheat-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/tcpdump-cheat-sheet.pdf -------------------------------------------------------------------------------- /cheat-sheet/tcpdump.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/tcpdump.pdf -------------------------------------------------------------------------------- /cheat-sheet/tmux-cheat-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/tmux-cheat-sheet.png -------------------------------------------------------------------------------- /cheat-sheet/vi-cheat-sheet-Ops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/cheat-sheet/vi-cheat-sheet-Ops.jpg -------------------------------------------------------------------------------- /ppt/50_tips_and_tricks_for_mongodb_developers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/50_tips_and_tricks_for_mongodb_developers.pdf -------------------------------------------------------------------------------- /ppt/Linux-Perf-Tuning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/Linux-Perf-Tuning.pdf -------------------------------------------------------------------------------- /ppt/Linux-Profiling-at-Netflix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/Linux-Profiling-at-Netflix.pdf -------------------------------------------------------------------------------- /ppt/Linux-storage-stack-diagram_v3.17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/Linux-storage-stack-diagram_v3.17.png -------------------------------------------------------------------------------- /ppt/MySQL技术分享:一步到位实现MySQL优化 - 20141024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/MySQL技术分享:一步到位实现MySQL优化 - 20141024.pdf -------------------------------------------------------------------------------- /ppt/TCP协议疑难杂症全景解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/TCP协议疑难杂症全景解析.pdf -------------------------------------------------------------------------------- /ppt/TLCL-13.07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/TLCL-13.07.pdf -------------------------------------------------------------------------------- /ppt/facebook-app-headers-learn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/facebook-app-headers-learn.pdf -------------------------------------------------------------------------------- /ppt/mongodb_applied_design_patterns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/mongodb_applied_design_patterns.pdf -------------------------------------------------------------------------------- /ppt/php-production-tuning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/php-production-tuning.pdf -------------------------------------------------------------------------------- /ppt/sed-and-awk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/sed-and-awk.pdf -------------------------------------------------------------------------------- /ppt/正确使用Android性能分析工具——TraceView _ bxbxbai_Android开发笔记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dafang/notebook/HEAD/ppt/正确使用Android性能分析工具——TraceView _ bxbxbai_Android开发笔记.pdf --------------------------------------------------------------------------------