├── .github └── FUNDING.yml ├── .gitignore ├── JetBrains ├── README.md └── ide-setting.md ├── README.md ├── SUMMARY.md ├── appendix ├── README.md ├── books.md ├── computer-science.md ├── tools.md └── websites.md ├── architecture ├── README.md ├── design-pattern │ ├── README.md │ └── design-pattern-js.md ├── interface-oriented-programming │ └── README.md └── object-oriented-programming │ ├── README.md │ ├── encapsulation.md │ ├── inheritance.md │ └── polymorphism.md ├── code-review ├── 6-ways-to-quantify-your-code.md ├── README.md └── code-review-list.md ├── data-structures-and-algorithm ├── README.md ├── data-structure-float.md ├── heap-and-stack.md ├── learning-road.md ├── sort-algorithm.md └── xml-and-json.md ├── deploy ├── README.md └── aws-intro.md ├── design ├── README.md ├── appreciate.md ├── balance-design-and-realize.md ├── infinite-tile.md └── learning-sketch.md ├── effciency ├── README.md ├── break-through-intranet.md ├── coder-guide.md ├── great-fire-wall.md ├── how-to-ask.md ├── how-to-read.md ├── how-to-search.md ├── how-to-write.md ├── mange-files.md ├── mange-knowledge.md ├── mange-password.md ├── mange-time.md ├── music-vs-efficiency.md ├── share-with-slide.md └── share-with-video.md ├── hacker ├── README.md └── protect-privacy.md ├── healthy ├── README.md ├── about-sleep.md └── detect-overwork.md ├── knowledge ├── README.md ├── learning-design.md ├── learning-english.md ├── learning-front-end.md ├── learning-games.md ├── learning-ios.md ├── learning-mooc.md └── podcasts.md ├── networks ├── README.md ├── a-simple-performance-comparison-of-https-spdy-and-http2.md ├── assets │ └── http状态码.jpg └── http-status-code.md ├── offer ├── README.md ├── about-resume.md ├── before-find-offer.md └── interview-principle-and-skill.md ├── others ├── README.md └── hardware.md ├── pm ├── README.md ├── good-product-manager.md └── pm-skills.md ├── programmer-basic ├── README.md ├── character-encoding.md ├── directory.md ├── naming.md ├── open-source-license.md ├── ordinary-road.md ├── regular-expression.md ├── semantic-versioning.md ├── technical-terms.md └── write-document.md ├── software ├── .gitignore ├── README.md ├── android │ ├── README.md │ ├── google-play.md │ └── software-list.md ├── develop-tool │ ├── README.md │ ├── editor-config.md │ ├── emacs.md │ ├── fonts.md │ ├── git.md │ ├── gulp.md │ ├── mac-sublimetext3.md │ ├── node.md │ ├── shadowsocks.md │ ├── tmux.md │ ├── webstorm.md │ └── windows-sublimetext3.md ├── git │ ├── README.md │ ├── getting-start.md │ └── github-cheat-sheet.md ├── mac │ ├── README.md │ ├── alias.md │ ├── develop-environment.md │ ├── dotfiles.md │ ├── permissions.md │ ├── setting.md │ ├── shortcuts.md │ ├── software-list.md │ ├── softwares │ │ ├── 1Password.md │ │ ├── TextExpander.md │ │ ├── bettertouchtool.md │ │ ├── brew.md │ │ ├── euDic.md │ │ ├── iTerm2.md │ │ ├── manico.md │ │ ├── popClip.md │ │ ├── window-management.md │ │ └── zsh.md │ └── usefully-command.md ├── sketch │ ├── Awesome-Sketch.md │ └── README.md ├── trello │ ├── README.md │ └── use-trello-manage-project.md └── windows │ ├── README.md │ ├── hardware.md │ ├── install-windows.md │ └── software-list.md ├── soho ├── README.md └── resource.md ├── teamwork ├── README.md ├── hiring.md ├── leader.md └── training.md └── writing ├── README.md └── using-gitbook.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/.gitignore -------------------------------------------------------------------------------- /JetBrains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/JetBrains/README.md -------------------------------------------------------------------------------- /JetBrains/ide-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/JetBrains/ide-setting.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /appendix/README.md: -------------------------------------------------------------------------------- 1 | # 附录 2 | -------------------------------------------------------------------------------- /appendix/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/appendix/books.md -------------------------------------------------------------------------------- /appendix/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/appendix/computer-science.md -------------------------------------------------------------------------------- /appendix/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/appendix/tools.md -------------------------------------------------------------------------------- /appendix/websites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/appendix/websites.md -------------------------------------------------------------------------------- /architecture/README.md: -------------------------------------------------------------------------------- 1 | # 代码架构 2 | 3 | ## 参考资料 4 | - [软件设计杂谈](http://mp.weixin.qq.com/s?__biz=MzA3NDM0ODQwMw==&mid=207078329&idx=1&sn=14070c2bc5f24af58e951c8a926964e0#rd) -------------------------------------------------------------------------------- /architecture/design-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/architecture/design-pattern/README.md -------------------------------------------------------------------------------- /architecture/design-pattern/design-pattern-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/architecture/design-pattern/design-pattern-js.md -------------------------------------------------------------------------------- /architecture/interface-oriented-programming/README.md: -------------------------------------------------------------------------------- 1 | # 面向接口编程 2 | IOP。 -------------------------------------------------------------------------------- /architecture/object-oriented-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/architecture/object-oriented-programming/README.md -------------------------------------------------------------------------------- /architecture/object-oriented-programming/encapsulation.md: -------------------------------------------------------------------------------- 1 | # 封装 2 | -------------------------------------------------------------------------------- /architecture/object-oriented-programming/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/architecture/object-oriented-programming/inheritance.md -------------------------------------------------------------------------------- /architecture/object-oriented-programming/polymorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/architecture/object-oriented-programming/polymorphism.md -------------------------------------------------------------------------------- /code-review/6-ways-to-quantify-your-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/code-review/6-ways-to-quantify-your-code.md -------------------------------------------------------------------------------- /code-review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/code-review/README.md -------------------------------------------------------------------------------- /code-review/code-review-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/code-review/code-review-list.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/README.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/data-structure-float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/data-structure-float.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/heap-and-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/heap-and-stack.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/learning-road.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/learning-road.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/sort-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/sort-algorithm.md -------------------------------------------------------------------------------- /data-structures-and-algorithm/xml-and-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/data-structures-and-algorithm/xml-and-json.md -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- 1 | # 服务器部署 2 | -------------------------------------------------------------------------------- /deploy/aws-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/deploy/aws-intro.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- 1 | # 懂点设计 -------------------------------------------------------------------------------- /design/appreciate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/design/appreciate.md -------------------------------------------------------------------------------- /design/balance-design-and-realize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/design/balance-design-and-realize.md -------------------------------------------------------------------------------- /design/infinite-tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/design/infinite-tile.md -------------------------------------------------------------------------------- /design/learning-sketch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/design/learning-sketch.md -------------------------------------------------------------------------------- /effciency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/README.md -------------------------------------------------------------------------------- /effciency/break-through-intranet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/break-through-intranet.md -------------------------------------------------------------------------------- /effciency/coder-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/coder-guide.md -------------------------------------------------------------------------------- /effciency/great-fire-wall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/great-fire-wall.md -------------------------------------------------------------------------------- /effciency/how-to-ask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/how-to-ask.md -------------------------------------------------------------------------------- /effciency/how-to-read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/how-to-read.md -------------------------------------------------------------------------------- /effciency/how-to-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/how-to-search.md -------------------------------------------------------------------------------- /effciency/how-to-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/how-to-write.md -------------------------------------------------------------------------------- /effciency/mange-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/mange-files.md -------------------------------------------------------------------------------- /effciency/mange-knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/mange-knowledge.md -------------------------------------------------------------------------------- /effciency/mange-password.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /effciency/mange-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/mange-time.md -------------------------------------------------------------------------------- /effciency/music-vs-efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/music-vs-efficiency.md -------------------------------------------------------------------------------- /effciency/share-with-slide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /effciency/share-with-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/effciency/share-with-video.md -------------------------------------------------------------------------------- /hacker/README.md: -------------------------------------------------------------------------------- 1 | # Hacker 2 | 3 | ## 参考资料 4 | - [知道创宇:余弦](http://zhuanlan.zhihu.com/evilcos/19691465) -------------------------------------------------------------------------------- /hacker/protect-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/hacker/protect-privacy.md -------------------------------------------------------------------------------- /healthy/README.md: -------------------------------------------------------------------------------- 1 | # 关注健康 2 | 身体是革命的本钱,程序员本来锻炼的少,珍惜生命。 -------------------------------------------------------------------------------- /healthy/about-sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/healthy/about-sleep.md -------------------------------------------------------------------------------- /healthy/detect-overwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/healthy/detect-overwork.md -------------------------------------------------------------------------------- /knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/README.md -------------------------------------------------------------------------------- /knowledge/learning-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/learning-design.md -------------------------------------------------------------------------------- /knowledge/learning-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/learning-english.md -------------------------------------------------------------------------------- /knowledge/learning-front-end.md: -------------------------------------------------------------------------------- 1 | # 前端学习 2 | -------------------------------------------------------------------------------- /knowledge/learning-games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/learning-games.md -------------------------------------------------------------------------------- /knowledge/learning-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/learning-ios.md -------------------------------------------------------------------------------- /knowledge/learning-mooc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/learning-mooc.md -------------------------------------------------------------------------------- /knowledge/podcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/knowledge/podcasts.md -------------------------------------------------------------------------------- /networks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/networks/README.md -------------------------------------------------------------------------------- /networks/a-simple-performance-comparison-of-https-spdy-and-http2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/networks/a-simple-performance-comparison-of-https-spdy-and-http2.md -------------------------------------------------------------------------------- /networks/assets/http状态码.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/networks/assets/http状态码.jpg -------------------------------------------------------------------------------- /networks/http-status-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/networks/http-status-code.md -------------------------------------------------------------------------------- /offer/README.md: -------------------------------------------------------------------------------- 1 | # 关于工作 2 | -------------------------------------------------------------------------------- /offer/about-resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/offer/about-resume.md -------------------------------------------------------------------------------- /offer/before-find-offer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/offer/before-find-offer.md -------------------------------------------------------------------------------- /offer/interview-principle-and-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/offer/interview-principle-and-skill.md -------------------------------------------------------------------------------- /others/README.md: -------------------------------------------------------------------------------- 1 | # 其他方面 2 | -------------------------------------------------------------------------------- /others/hardware.md: -------------------------------------------------------------------------------- 1 | # 硬件相关 2 | 3 | ## 参考资料 4 | - [固态硬盘真的不需要整理碎片吗](http://www.zhihu.com/question/21554450) 5 | -------------------------------------------------------------------------------- /pm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/pm/README.md -------------------------------------------------------------------------------- /pm/good-product-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/pm/good-product-manager.md -------------------------------------------------------------------------------- /pm/pm-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/pm/pm-skills.md -------------------------------------------------------------------------------- /programmer-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/README.md -------------------------------------------------------------------------------- /programmer-basic/character-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/character-encoding.md -------------------------------------------------------------------------------- /programmer-basic/directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/directory.md -------------------------------------------------------------------------------- /programmer-basic/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/naming.md -------------------------------------------------------------------------------- /programmer-basic/open-source-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/open-source-license.md -------------------------------------------------------------------------------- /programmer-basic/ordinary-road.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/ordinary-road.md -------------------------------------------------------------------------------- /programmer-basic/regular-expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/regular-expression.md -------------------------------------------------------------------------------- /programmer-basic/semantic-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/semantic-versioning.md -------------------------------------------------------------------------------- /programmer-basic/technical-terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/technical-terms.md -------------------------------------------------------------------------------- /programmer-basic/write-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/programmer-basic/write-document.md -------------------------------------------------------------------------------- /software/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/.gitignore -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/README.md -------------------------------------------------------------------------------- /software/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/android/README.md -------------------------------------------------------------------------------- /software/android/google-play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/android/google-play.md -------------------------------------------------------------------------------- /software/android/software-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/android/software-list.md -------------------------------------------------------------------------------- /software/develop-tool/README.md: -------------------------------------------------------------------------------- 1 | # 开发工具 2 | 本章节介绍一些开发过程中经常使用到的工具。 -------------------------------------------------------------------------------- /software/develop-tool/editor-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/editor-config.md -------------------------------------------------------------------------------- /software/develop-tool/emacs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/emacs.md -------------------------------------------------------------------------------- /software/develop-tool/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/fonts.md -------------------------------------------------------------------------------- /software/develop-tool/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/git.md -------------------------------------------------------------------------------- /software/develop-tool/gulp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/gulp.md -------------------------------------------------------------------------------- /software/develop-tool/mac-sublimetext3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/mac-sublimetext3.md -------------------------------------------------------------------------------- /software/develop-tool/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/node.md -------------------------------------------------------------------------------- /software/develop-tool/shadowsocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/shadowsocks.md -------------------------------------------------------------------------------- /software/develop-tool/tmux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/tmux.md -------------------------------------------------------------------------------- /software/develop-tool/webstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/webstorm.md -------------------------------------------------------------------------------- /software/develop-tool/windows-sublimetext3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/develop-tool/windows-sublimetext3.md -------------------------------------------------------------------------------- /software/git/README.md: -------------------------------------------------------------------------------- 1 | # git进阶 2 | -------------------------------------------------------------------------------- /software/git/getting-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/git/getting-start.md -------------------------------------------------------------------------------- /software/git/github-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/git/github-cheat-sheet.md -------------------------------------------------------------------------------- /software/mac/README.md: -------------------------------------------------------------------------------- 1 | # Mac篇 2 | 终于换了Mac了。 3 | 4 | 除了按键不习惯,其他都很好!貌似把键盘的ctrl修改为command会比较好。 5 | -------------------------------------------------------------------------------- /software/mac/alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/alias.md -------------------------------------------------------------------------------- /software/mac/develop-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/develop-environment.md -------------------------------------------------------------------------------- /software/mac/dotfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/dotfiles.md -------------------------------------------------------------------------------- /software/mac/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/permissions.md -------------------------------------------------------------------------------- /software/mac/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/setting.md -------------------------------------------------------------------------------- /software/mac/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/shortcuts.md -------------------------------------------------------------------------------- /software/mac/software-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/software-list.md -------------------------------------------------------------------------------- /software/mac/softwares/1Password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/1Password.md -------------------------------------------------------------------------------- /software/mac/softwares/TextExpander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/TextExpander.md -------------------------------------------------------------------------------- /software/mac/softwares/bettertouchtool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/bettertouchtool.md -------------------------------------------------------------------------------- /software/mac/softwares/brew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/brew.md -------------------------------------------------------------------------------- /software/mac/softwares/euDic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/euDic.md -------------------------------------------------------------------------------- /software/mac/softwares/iTerm2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/iTerm2.md -------------------------------------------------------------------------------- /software/mac/softwares/manico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/manico.md -------------------------------------------------------------------------------- /software/mac/softwares/popClip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/popClip.md -------------------------------------------------------------------------------- /software/mac/softwares/window-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/window-management.md -------------------------------------------------------------------------------- /software/mac/softwares/zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/softwares/zsh.md -------------------------------------------------------------------------------- /software/mac/usefully-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/mac/usefully-command.md -------------------------------------------------------------------------------- /software/sketch/Awesome-Sketch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/sketch/Awesome-Sketch.md -------------------------------------------------------------------------------- /software/sketch/README.md: -------------------------------------------------------------------------------- 1 | # Sketch 2 | -------------------------------------------------------------------------------- /software/trello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/trello/README.md -------------------------------------------------------------------------------- /software/trello/use-trello-manage-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/trello/use-trello-manage-project.md -------------------------------------------------------------------------------- /software/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/windows/README.md -------------------------------------------------------------------------------- /software/windows/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/windows/hardware.md -------------------------------------------------------------------------------- /software/windows/install-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/windows/install-windows.md -------------------------------------------------------------------------------- /software/windows/software-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/software/windows/software-list.md -------------------------------------------------------------------------------- /soho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/soho/README.md -------------------------------------------------------------------------------- /soho/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/soho/resource.md -------------------------------------------------------------------------------- /teamwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/teamwork/README.md -------------------------------------------------------------------------------- /teamwork/hiring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/teamwork/hiring.md -------------------------------------------------------------------------------- /teamwork/leader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/teamwork/leader.md -------------------------------------------------------------------------------- /teamwork/training.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /writing/README.md: -------------------------------------------------------------------------------- 1 | # 写点东西 2 | 程序员能把逻辑梳理出来,是另一大技能! -------------------------------------------------------------------------------- /writing/using-gitbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohxj/a-programmer-prepares/HEAD/writing/using-gitbook.md --------------------------------------------------------------------------------