├── .DS_Store ├── .gitignore ├── .nojekyll ├── LICENSE ├── README.md ├── _coverpage.md ├── _media └── icon.svg ├── _sidebar.md ├── index.html ├── 学习路线 ├── .DS_Store ├── README.md └── files │ └── Java基础.pdf ├── 实用资源 └── README.md ├── 编程书籍 └── README.md ├── 贴心教程 └── README.md ├── 面试合集 ├── README.md ├── 优秀面经.md ├── 知识总结.md └── 面试题解.md └── 项目实战 └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/free-programming-resources/b3b4b9d5b397b2218ea98c31b9419bdbca195a9c/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | .vercel 4 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/free-programming-resources/b3b4b9d5b397b2218ea98c31b9419bdbca195a9c/.nojekyll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 程序员鱼皮 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 💎 免费编程资源大全 2 | > 让天下编程资源不再难找,帮助更多小伙伴!by 鱼皮,持续更新! 3 | 4 | 5 | 6 | ![](https://img.shields.io/badge/学习路线-100+-brightgreen.svg) 7 | ![](https://img.shields.io/badge/贴心教程-100+-green.svg) 8 | ![](https://img.shields.io/badge/项目实战-100+-red.svg) 9 | ![](https://img.shields.io/badge/编程书籍-1000+-yellow.svg) 10 | ![](https://img.shields.io/badge/面试合集-1000+-orange.svg) 11 | ![](https://img.shields.io/badge/实用资源-1000+-blue.svg) 12 | 13 | [直接在线阅读,喂饱收藏夹!](https://free.code-nav.cn) ✨ [备用地址](https://liyupi.gitee.io/free-programming-resources/) 14 | 15 | 搜资源:[编程导航网](https://www.code-nav.cn) 16 | 17 | 私密资源:[程序员鱼皮](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 18 | 19 | 技术干货:[程序员鱼皮](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 20 | 21 | 22 |
23 | 24 | ## 目录 25 | 26 | - 🚄 [学习路线](./学习路线/README.md) 27 | - ❤️ [贴心教程](./贴心教程/README.md) 28 | - 💻 [项目实战](./项目实战/README.md) 29 | - 📚 [编程书籍](./编程书籍/README.md) 30 | - 🙎 [面试合集](./面试合集/README.md) 31 | - 📦 [实用资源](./实用资源/README.md) 32 | 33 | 34 | 35 |
36 | 37 | ## 贡献 38 | 39 | 欢迎大家共同完善这个项目,让免费资源不再难找! 40 | 41 | 直接发起提交、在 [编程导航](https://www.code-nav.cn) 推荐、或联系作者(微信:liyupi66)均可。 42 | -------------------------------------------------------------------------------- /_coverpage.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ![logo](_media/icon.svg) 4 | 5 | # 💎 免费编程资源大全 6 | 7 | > 让天下编程资源不再难找!by 鱼皮 8 | 9 | - 🚄 [学习路线](./学习路线/README.md) 10 | - ❤️ [贴心教程](./贴心教程/README.md) 11 | - 💻 [项目实战](./项目实战/README.md) 12 | - 📚 [编程书籍](./编程书籍/README.md) 13 | - 🙎 [面试合集](./面试合集/README.md) 14 | - 📦 [实用资源](./实用资源/README.md) 15 | 16 | [GitHub](https://github.com/liyupi/free-programming-resources) 17 | [阅读](README.md) 18 | 19 | -------------------------------------------------------------------------------- /_media/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 83 | 84 | -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | - [学习路线](./学习路线/README.md) 4 | - [贴心教程](./贴心教程/README.md) 5 | - [项目实战](./项目实战/README.md) 6 | - [编程书籍](./编程书籍/README.md) 7 | - [面试合集](./面试合集/README.md) 8 | - [知识总结](./面试合集/知识总结.md) 9 | - [面试题解](./面试合集/面试题解.md) 10 | - [优秀面经](./面试合集/优秀面经.md) 11 | - [实用资源](./实用资源/README.md) 12 | 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 免费编程资源大全 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /学习路线/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/free-programming-resources/b3b4b9d5b397b2218ea98c31b9419bdbca195a9c/学习路线/.DS_Store -------------------------------------------------------------------------------- /学习路线/README.md: -------------------------------------------------------------------------------- 1 | # 学习路线 2 | 3 | > 持续整理编程学习路线,只收录精品! 4 | 5 | 6 | 7 | [前端学习路线](https://www.code-nav.cn/rd/?rid=b00064a76018de96025ec22f218e8e6e) 8 | 9 | [Java 基础思维导图](./files/Java基础.pdf) 10 | 11 | 🔐 [Java 基础思维导图源文件](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 12 | 13 | [Java 学习路线](https://how2j.cn/frontroute) 14 | 15 | -------------------------------------------------------------------------------- /学习路线/files/Java基础.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/free-programming-resources/b3b4b9d5b397b2218ea98c31b9419bdbca195a9c/学习路线/files/Java基础.pdf -------------------------------------------------------------------------------- /实用资源/README.md: -------------------------------------------------------------------------------- 1 | # 实用资源 2 | 3 | > 本文档仅列举精品编程资源,更多请在 [编程导航](https://www.code-nav.cn) 直接搜索! 4 | 5 | 6 | 7 | ## 目录 8 | 9 | - [找开源项目](#找开源项目) 10 | - [自我修养](#自我修养) 11 | - [持续更新](#持续更新) 12 | 13 | 14 | 15 | ## 找开源项目 16 | 17 | [GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts):GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果 18 | 19 | [HelloGitHub](https://www.code-nav.cn/rd/?rid=28ee4e3e60322bb106a48ba20e228d13):分享 GitHub 上有趣、入门级的开源项目 20 | 21 | [Explore GitHub](https://www.code-nav.cn/rd/?rid=28ee4e3e60322bf906a4987d176713da):GitHub 官方探索,基于兴趣为你推荐开源项目 22 | 23 | [GitHub Docs](https://www.code-nav.cn/rd/?rid=b00064a760322b1f064249b56a37ad98):GitHub 中文文档,了解 GitHub 全部功能 24 | 25 | [Topics on GitHub](https://www.code-nav.cn/rd/?rid=79550af260322c41062ce93728994a21):GitHub 官方提供的主题分类,帮助你找到合适的项目 26 | 27 | [GitHub Awesome](https://www.code-nav.cn/rd/?rid=b00064a760322c90064285ba7638805f):GitHub 官方提供的 awesome 合集,帮助你发现特定标签的资源大全 28 | 29 | [GitHub 官方 Trending](https://www.code-nav.cn/rd/?rid=b00064a760322cd30642974900a6de7d):GitHub 官方提供的趋势统计,帮你发现优秀、有潜力的开源项目 30 | 31 | [GitHub Trending](https://www.code-nav.cn/rd/?rid=28ee4e3e60322d1c06a4d72a2d2690ec):GitHub 趋势,寻找最好的Github项目,让您的开发如虎添翼! 32 | 33 | [Gitstar Ranking](https://www.code-nav.cn/rd/?rid=28ee4e3e60322d7806a4e74d2da282a5):非官方 GitHub Star 统计排名 34 | 35 | [GitHuber.cn](https://www.code-nav.cn/rd/?rid=28ee4e3e60322dec06a4fb9137c192bb):发现优秀 GitHub 开发者 36 | 37 | [searchcode](https://www.code-nav.cn/rd/?rid=28ee4e3e600fb3900114f71f4f81db4e):简单全面的开源代码搜索器 38 | 39 | [LibHunt](https://www.code-nav.cn/rd/?rid=28ee4e3e600fb3900114f71f4f81db4e):汇集实用的开源项目和软件类库,让编程人员快速发现好的项目 40 | 41 | [Codelf](https://www.code-nav.cn/rd/?rid=28ee4e3e600fb3900114f71f4f81db4e):变量命名神器 42 | 43 | [GitClone](https://www.code-nav.cn/rd/?rid=28ee4e3e600fb3900114f71f4f81db4e):GitHub 缓存加速网站 44 | 45 | [GitHub 加速下载](https://www.code-nav.cn/rd/?rid=b00064a760322e940642dfab7765f4ee) 46 | 47 | [GitHub 文件加速](https://www.code-nav.cn/rd/?rid=28ee4e3e60322efc06a52b49518dcd9a) 48 | 49 | 50 | 51 | ## 自我修养 52 | 53 | [996.ICU](https://github.com/996icu/996.ICU/blob/master/blacklist/README.md):996 工作制公司名单 54 | 55 | [955.WLB](https://github.com/formulahendry/955.WLB):995 工作制公司名单 56 | 57 | [996.Leave](https://github.com/623637646/996.Leave):逃离 996,养老国外公司 58 | 59 | 60 | 61 | ## 持续更新 62 | 63 | [docsify](https://www.code-nav.cn/rd/?rid=79550af26016dd3b01eb463c6ec11b09):一个神奇的文档网站生成工具 64 | 65 | [Draw.io](https://www.code-nav.cn/rd/?rid=1526e12a601636a10183dff553bfa5bf):实用的免费在线图表绘制工具 66 | 67 | [BootCDN](https://www.code-nav.cn/rd/?rid=79550af260194b2802471c2d458d9190):稳定、快速、免费的前端开源项目 CDN 加速服务 68 | 69 | [Iconfont](https://www.code-nav.cn/rd/?rid=98bb04175feeea3500eff311351f9ff2):国内功能强大且图标丰富的矢量图标库 70 | 71 | [LeetCode](https://www.code-nav.cn/rd/?rid=21ded5cb5ff564b403f5c64a46e8dc6b):国内程序员必备算法刷题网站 72 | 73 | [鸠摩搜书](https://www.code-nav.cn/rd/?rid=023ce9555ffbdc7b041408ef4e6e3515):电子书搜索引擎,有多种格式可供下载 74 | 75 | [编程主页](https://www.code-nav.cn/rd/?rid=3b020ca36008e9d7004648fb365efc2a):程序员必备的极简炫酷浏览器主页 76 | 77 | [uTools](https://www.code-nav.cn/rd/?rid=79550af2601a6f350269b71001f2baea):极简、插件化、跨平台的现代桌面工具集 78 | 79 | [RegExr](https://www.code-nav.cn/rd/?rid=79550af2601114e9012110711798772b):学习、创建和测试正则表达式的在线可视化工具 80 | 81 | [数据库大全](https://www.code-nav.cn/rd/?rid=b00064a76012546b016e274a3724c5f0):果创云收录的各种数据库表设计 82 | 83 | [腾讯兔小巢](https://www.code-nav.cn/rd/?rid=28ee4e3e6008308d00471c994d1b4106):免费便捷的用户意见反馈服务平台,让用户帮你把产品做得更好 84 | 85 | -------------------------------------------------------------------------------- /编程书籍/README.md: -------------------------------------------------------------------------------- 1 | # 编程书籍 2 | 3 | > 已收录近千本编程电子书和文档,支持在线阅读和 PDF 下载! 4 | > 5 | > 🔍 支持在 [编程导航](https://www.code-nav.cn) 直接搜索书籍! 6 | 7 | 8 | 9 | ## 目录 10 | 11 | * [语言无关](#语言无关) 12 | * [算法数据结构](#算法数据结构) 13 | * [版本控制](#版本控制) 14 | * [编程艺术](#编程艺术) 15 | * [编辑器](#编辑器) 16 | * [编译原理](#编译原理) 17 | * [操作系统](#操作系统) 18 | * [程序员杂谈](#程序员杂谈) 19 | * [大数据](#大数据) 20 | * [分布式系统](#分布式系统) 21 | * [管理和监控](#管理和监控) 22 | * [函数式概念](#函数式概念) 23 | * [计算机图形学](#计算机图形学) 24 | * [其它](#其它) 25 | * [软件开发方法](#软件开发方法) 26 | * [设计模式](#设计模式) 27 | * [数据库](#数据库) 28 | * [项目相关](#项目相关) 29 | * [在线教育](#在线教育) 30 | * [正则表达式](#正则表达式) 31 | * [智能系统](#智能系统) 32 | * [IDE](#ide) 33 | * [Web](#web) 34 | * [WEB服务器](#web服务器) 35 | * [语言相关](#语言相关) 36 | * [Android](#android) 37 | * [AWK](#awk) 38 | * [C](#c) 39 | * [C#](#c-sharp) 40 | * [C++](#cpp) 41 | * [CoffeeScript](#coffeescript) 42 | * [Dart](#dart) 43 | * [Elasticsearch](#elasticsearch) 44 | * [Elixir](#elixir) 45 | * [Erlang](#erlang) 46 | * [Fortran](#fortran) 47 | * [Golang](#golang) 48 | * [Haskell](#haskell) 49 | * [HTML / CSS](#html--css) 50 | * [HTTP](#http) 51 | * [iOS](#ios) 52 | * [Java](#java) 53 | * [JavaScript](#javascript) 54 | * [AngularJS](#angularjs) 55 | * [Backbone.js](#backbonejs) 56 | * [D3.js](#d3js) 57 | * [Electron.js](#electronjs) 58 | * [ExtJS](#extjs) 59 | * [impress.js](#impressjs) 60 | * [jQuery](#jquery) 61 | * [Node.js](#nodejs) 62 | * [React.js](#reactjs) 63 | * [Vue.js](#vuejs) 64 | * [Zepto.js](#zeptojs) 65 | * [LaTeX](#latex) 66 | * [LISP](#lisp) 67 | * [Lua](#lua) 68 | * [Markdown](#markdown) 69 | * [MySQL](#mysql) 70 | * [NoSQL](#nosql) 71 | * [Perl](#perl) 72 | * [PHP](#php) 73 | * [Laravel](#laravel) 74 | * [Symfony](#symfony) 75 | * [PostgreSQL](#postgresql) 76 | * [Python](#python) 77 | * [Django](#django) 78 | * [R](#r) 79 | * [reStructuredText](#restructuredtext) 80 | * [Ruby](#ruby) 81 | * [Rust](#rust) 82 | * [Scala](#scala) 83 | * [Scheme](#scheme) 84 | * [Scratch](#scratch) 85 | * [Shell](#shell) 86 | * [Swift](#swift) 87 | * [TypeScript](#typescript) 88 | * [VBA](#vba-microsoft-visual-basic-applications) 89 | * [Vim](#vim) 90 | * [Visual Prolog](#visual-prolog) 91 | * [WebAssembly](#webassembly) 92 | 93 | 94 | 95 | ## 语言无关 96 | 97 | ### 算法数据结构 98 | 99 | **🔐 更多** 100 | 101 | 百度网盘链接:https://pan.baidu.com/s/1G6QU8D3cLkvS8uy85PPHqw 102 | 103 | 提取码:9knq 104 | 105 | - LeetCode 101 106 | - LeetCode 题解 151 107 | - LeetCode Cookbook 108 | - 西法的刷题秘籍 109 | - 漫画算法:小灰的算法之旅 110 | - 算法-第4版 111 | - 《编程之美》扫描版 112 | - 《程序设计实践》中文版 113 | - algorithms unlocked 114 | 115 | 116 | 117 | ### 版本控制 118 | 119 | * [猴子都能懂的GIT入门](http://backlogtool.com/git-guide/cn/) 120 | * [学习 Git 分支](https://learngitbranching.js.org) 121 | * [Git - 简易指南](http://rogerdudler.github.io/git-guide/index.zh.html) 122 | * [Git 参考手册](http://gitref.justjavac.com) 123 | * [Git-Cheat-Sheet](https://github.com/flyhigher139/Git-Cheat-Sheet) - flyhigher139 124 | * [Git Community Book 中文版](http://gitbook.liuhui998.com) 125 | * [git-flow 备忘清单](http://danielkummer.github.io/git-flow-cheatsheet/index.zh_CN.html) 126 | * [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/) 127 | * [Git教程](http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000) - 廖雪峰 128 | * [Github帮助文档](https://github.com/waylau/github-help) 129 | * [GitHub秘籍](https://snowdream86.gitbooks.io/github-cheat-sheet/content/zh/) 130 | * [GotGitHub](http://www.worldhello.net/gotgithub/index.html) 131 | * [HgInit (中文版)](https://zh-hginit.readthedocs.io/en/latest/) 132 | * [Mercurial 使用教程](https://www.mercurial-scm.org/wiki/ChineseTutorial) 133 | * [Pro Git](https://git-scm.com/book/zh/v2) 134 | * [Pro Git 第二版 中文版](https://bingohuang.gitbooks.io/progit2/content) - Bingo Huang 135 | * [svn 手册](http://svnbook.red-bean.com/nightly/zh/index.html) 136 | * [GitHub漫游指南](https://github.com/phodal/github-roam) 137 | 138 | 139 | 140 | 141 | ### 编程艺术 142 | 143 | * [编程入门指南](http://www.kancloud.cn/kancloud/intro-to-prog/52592) 144 | * [程序员编程艺术](https://github.com/julycoding/The-Art-Of-Programming-by-July) 145 | * [每个程序员都应该了解的内存知识 (第一部分)](http://www.oschina.net/translate/what-every-programmer-should-know-about-memory-part1) 146 | 147 | 148 | ### 编辑器 149 | 150 | * [笨方法学Vimscript 中译本](http://learnvimscriptthehardway.onefloweroneworld.com) 151 | * [所需即所获:像 IDE 一样使用 vim](https://github.com/yangyangwithgnu/use_vim_as_ide) 152 | * [exvim--vim 改良成IDE项目](http://exvim.github.io/docs-zh/intro/) 153 | * [Vim中文文档](https://github.com/vimcn/vimcdoc) 154 | 155 | 156 | ### 编译原理 157 | 158 | * [《计算机程序的结构和解释》公开课 翻译项目](https://github.com/DeathKing/Learning-SICP) 159 | 160 | 161 | ### 操作系统 162 | 163 | * [开源世界旅行手册](http://i.linuxtoy.org/docs/guide/index.html) 164 | * [理解Linux进程](https://github.com/tobegit3hub/understand_linux_process) 165 | * [命令行的艺术](https://github.com/jlevy/the-art-of-command-line/blob/master/README-zh.md) 166 | * [鸟哥的 Linux 私房菜 服务器架设篇](http://cn.linux.vbird.org/linux_server/) 167 | * [鸟哥的 Linux 私房菜 基础学习篇](http://cn.linux.vbird.org/linux_basic/linux_basic.php) 168 | * [嵌入式 Linux 知识库 (eLinux.org 中文版)](https://tinylab.gitbooks.io/elinux/content/zh/) 169 | * [Docker —— 从入门到实践](https://github.com/yeasy/docker_practice) 170 | * [Docker入门实战](http://yuedu.baidu.com/ebook/d817967416fc700abb68fca1) 171 | * [Docker中文指南](https://github.com/widuu/chinese_docker) 172 | * [Docker Cheat Sheet](https://github.com/wsargent/docker-cheat-sheet/tree/master/zh-cn#docker-cheat-sheet) 173 | * [FreeBSD 使用手册](http://www.freebsd.org/doc/zh_CN.UTF-8/books/handbook/) 174 | * [FreeRADIUS新手入门](http://freeradius.akagi201.org/) 😟 175 | * [Linux 构建指南](http://works.jinbuguo.com/lfs/lfs62/index.html) 176 | * [Linux 系统高级编程](http://sourceforge.net/projects/elpi/) 177 | * [Linux Documentation (中文版)](https://tinylab.gitbooks.io/linux-doc/content/zh-cn/) 178 | * [Linux Guide for Complete Beginners](http://happypeter.github.io/LGCB/book/) 179 | * [Linux工具快速教程](https://github.com/me115/linuxtools_rst) 180 | * [Mac 开发配置手册](https://aaaaaashu.gitbooks.io/mac-dev-setup/content/) 181 | * [Operating Systems: Three Easy Pieces](http://pages.cs.wisc.edu/~remzi/OSTEP/) 182 | * [The Linux Command Line](http://billie66.github.io/TLCL/index.html) 183 | * [Ubuntu 参考手册](http://wiki.ubuntu.org.cn/UbuntuManual) 184 | * [uCore Lab: Operating System Course in Tsinghua University](https://www.gitbook.com/book/objectkuan/ucore-docs/details) 185 | * [UNIX TOOLBOX](http://cb.vu/unixtoolbox_zh_CN.xhtml) 186 | * [嵌入式 Linux 知识库 (eLinux.org 中文版)](https://www.gitbook.com/book/tinylab/elinux/details) 187 | * [SystemTap新手指南](https://spacewander.gitbooks.io/systemtapbeginnersguide_zh/content/index.html) 188 | * [操作系统思考](https://github.com/wizardforcel/think-os-zh) 189 | 190 | 191 | 192 | 193 | ### 程序员杂谈 194 | 195 | * [程序员的自我修养](http://www.kancloud.cn/kancloud/a-programmer-prepares) 196 | 197 | 198 | ### 大数据 199 | 200 | * [面向程序员的数据挖掘指南](http://dataminingguide.books.yourtion.com) 201 | * [数据挖掘中经典的算法实现和详细的注释](https://github.com/linyiqun/DataMiningAlgorithm) 202 | * [Spark 编程指南简体中文版](https://aiyanbo.gitbooks.io/spark-programming-guide-zh-cn/content/) 203 | 204 | 205 | ### 分布式系统 206 | 207 | * [走向分布式](http://dcaoyuan.github.io/papers/pdfs/Scalability.pdf) (PDF) 208 | 209 | 210 | ### 管理和监控 211 | 212 | * [ElasticSearch 权威指南](https://www.gitbook.com/book/fuxiaopang/learnelasticsearch/details) 213 | * [Elasticsearch 权威指南(中文版)](http://es.xiaoleilu.com) 214 | * [ELKstack 中文指南](http://kibana.logstash.es) 215 | * [Logstash 最佳实践](https://github.com/chenryn/logstash-best-practice-cn) 216 | * [Mastering Elasticsearch(中文版)](http://udn.yyuap.com/doc/mastering-elasticsearch/) 217 | * [Puppet 2.7 Cookbook 中文版](https://www.gitbook.com/book/wizardforcel/puppet-27-cookbook/details) 218 | 219 | 220 | ### 函数式概念 221 | 222 | * [傻瓜函数编程](https://github.com/justinyhuang/Functional-Programming-For-The-Rest-of-Us-Cn) 223 | 224 | 225 | ### 计算机图形学 226 | 227 | * [LearnOpenGL CN](https://learnopengl-cn.github.io) 228 | * [《Real-Time Rendering 3rd》提炼总结](https://github.com/QianMo/Real-Time-Rendering-3rd-Summary-Ebook) 229 | * [OpenGL 教程](https://github.com/zilongshanren/opengl-tutorials) 230 | 231 | 232 | ### 其它 233 | 234 | * [深入理解并行编程](http://ifeve.com/perfbook/) 235 | * [SAN 管理入门系列](https://community.emc.com/docs/DOC-16067) 236 | * [Sketch 中文手册](http://sketchcn.com/sketch-chinese-user-manual.html#introduce) 237 | 238 | 239 | ### 软件开发方法 240 | 241 | * [傻瓜函数编程](https://github.com/justinyhuang/Functional-Programming-For-The-Rest-of-Us-Cn) (《Functional Programming For The Rest of Us》中文版) 242 | * [硝烟中的 Scrum 和 XP](http://www.infoq.com/cn/minibooks/scrum-xp-from-the-trenches) 243 | 244 | 245 | ### 设计模式 246 | 247 | * [史上最全设计模式导学目录](http://blog.csdn.net/lovelion/article/details/17517213) 248 | * [图说设计模式](https://github.com/me115/design_patterns) 249 | 250 | 251 | ### 数据库 252 | 253 | 254 | 255 | 256 | ### 项目相关 257 | 258 | * [编码规范](https://github.com/ecomfe/spec) 259 | * [开源软件架构](http://www.ituring.com.cn/book/1143) 260 | * [让开发自动化系列专栏](https://wizardforcel.gitbooks.io/ibm-j-ap) 261 | * [追求代码质量](https://wizardforcel.gitbooks.io/ibm-j-cq) 262 | * [GNU make 指南](http://docs.huihoo.com/gnu/linux/gmake.html) 263 | * [Gradle 2 用户指南](https://github.com/waylau/Gradle-2-User-Guide) 264 | * [Gradle 中文使用文档](http://yuedu.baidu.com/ebook/f23af265998fcc22bcd10da2) 265 | * [Joel谈软件](https://web.archive.org/web/20170616013024/http://local.joelonsoftware.com/wiki/Chinese_(Simplified)) 266 | * [selenium 中文文档](https://github.com/fool2fish/selenium-doc) 267 | 268 | 269 | ### 在线教育 270 | 271 | * [51CTO学院](http://edu.51cto.com) 272 | * [黑马程序员](http://yun.itheima.com) 273 | * [汇智网](http://www.hubwiz.com) 274 | * [极客学院](http://www.jikexueyuan.com) 275 | * [计蒜客](http://www.jisuanke.com) 276 | * [慕课网](http://www.imooc.com/course/list) 277 | * [Codecademy](https://www.codecademy.com/?locale_code=zh) 278 | * [CodeSchool](https://www.codeschool.com) 279 | * [Coursera](https://www.coursera.org/courses?orderby=upcoming&lngs=zh) 280 | * [Learn X in Y minutes](https://learnxinyminutes.com) 281 | * [shiyanlou](https://www.shiyanlou.com) 282 | * [TeamTreeHouse](https://teamtreehouse.com) 283 | * [Udacity](https://www.udacity.com) 284 | * [xuetangX](https://www.xuetangx.com) 285 | 286 | 287 | ### 正则表达式 288 | 289 | * [正则表达式-菜鸟教程](http://www.runoob.com/regexp/regexp-tutorial.html) 290 | * [正则表达式30分钟入门教程](https://web.archive.org/web/20161119141236/http://deerchao.net:80/tutorials/regex/regex.htm) 291 | 292 | 293 | ### 智能系统 294 | 295 | * [一步步搭建物联网系统](https://github.com/phodal/designiot) 296 | 297 | 298 | ### IDE 299 | 300 | * [IntelliJ IDEA 简体中文专题教程](https://github.com/judasn/IntelliJ-IDEA-Tutorial) 301 | 302 | 303 | ### Web 304 | 305 | * [3 Web Designs in 3 Weeks](https://www.gitbook.com/book/juntao/3-web-designs-in-3-weeks/details) 306 | * [关于浏览器和网络的 20 项须知](http://www.20thingsilearned.com/zh-CN/home) 307 | * [浏览器开发工具的秘密](http://jinlong.github.io/2013/08/29/devtoolsecrets/) 308 | * [前端代码规范 及 最佳实践](http://coderlmn.github.io/code-standards/) 309 | * [前端开发体系建设日记](https://github.com/fouber/blog/issues/2) 310 | * [前端资源分享(二)](https://github.com/hacke2/hacke2.github.io/issues/3) 311 | * [前端资源分享(一)](https://github.com/hacke2/hacke2.github.io/issues/1) 312 | * [一站式学习Wireshark](https://community.emc.com/thread/194901) 313 | * [移动前端开发收藏夹](https://github.com/hoosin/mobile-web-favorites) 314 | * [移动Web前端知识库](https://github.com/AlloyTeam/Mars) 315 | * [正则表达式30分钟入门教程](http://deerchao.net/tutorials/regex/regex.htm) 316 | * [Chrome 开发者工具中文手册](https://github.com/CN-Chrome-DevTools/CN-Chrome-DevTools) 317 | * [Chrome扩展及应用开发](http://www.ituring.com.cn/minibook/950) 318 | * [Chrome扩展开发文档](http://open.chrome.360.cn/extension_dev/overview.html) 319 | * [Growth: 全栈增长工程师指南](https://github.com/phodal/growth-ebook) 320 | * [Grunt中文文档](http://www.gruntjs.net) 321 | * [Gulp 入门指南](https://github.com/nimojs/gulp-book) 322 | * [gulp中文文档](http://www.gulpjs.com.cn/docs/) 323 | * [HTTP 接口设计指北](https://github.com/bolasblack/http-api-guide) 324 | * [HTTP/2.0 中文翻译](http://yuedu.baidu.com/ebook/478d1a62376baf1ffc4fad99?pn=1) 325 | * [http2讲解](https://www.gitbook.com/book/ye11ow/http2-explained/details) 326 | * [JSON风格指南](https://github.com/darcyliu/google-styleguide/blob/master/JSONStyleGuide.md) 327 | * [Wireshark用户手册](http://man.lupaworld.com/content/network/wireshark/index.html) 328 | 329 | 330 | ### WEB服务器 331 | 332 | * [Apache 中文手册](http://works.jinbuguo.com/apache/menu22/index.html) 333 | * [Nginx教程从入门到精通](http://www.ttlsa.com/nginx/nginx-stu-pdf/) - 运维生存时间 (PDF) 334 | * [Nginx开发从入门到精通](http://tengine.taobao.org/book/index.html) - 淘宝团队 335 | 336 | 337 | 338 | 339 | ## 语言相关 340 | 341 | ### Android 342 | 343 | * [Android Design(中文版)](http://www.apkbus.com/design/index.html) 344 | * [Android Note(开发过程中积累的知识点)](https://github.com/CharonChui/AndroidNote) 345 | * [Android6.0新特性详解](http://leanote.com/blog/post/561658f938f41126b2000298) 346 | * [Android开发技术前线(android-tech-frontier)](https://github.com/bboyfeiyu/android-tech-frontier) 347 | * [Google Android官方培训课程中文版](http://hukai.me/android-training-course-in-chinese/index.html) 348 | * Google Material Design 正體中文版 ([译本一](https://wcc723.gitbooks.io/google_design_translate/content/style-icons.html),[译本二](https://github.com/1sters/material_design_zh)) 349 | * [Material Design 中文版](http://wiki.jikexueyuan.com/project/material-design/) 350 | * [Point-of-Android](https://github.com/FX-Max/Point-of-Android) 351 | 352 | 353 | ### AWK 354 | 355 | * [awk程序设计语言](https://github.com/wuzhouhui/awk) 356 | * [awk中文指南](http://awk.readthedocs.org/en/latest/index.html) 357 | 358 | 359 | ### C 360 | 361 | * [新概念 C 语言教程](https://github.com/limingth/NCCL) 362 | * [Beej's Guide to Network Programming 簡體中文版](https://firebasestorage.googleapis.com/v0/b/gitbook-28427.appspot.com/o/assets%2F-ME5zR-03ZEHgp2kv7bW%2F-MF9EIY-s19_w19_Unae%2F-MF9F-HCs1nLOkY1mLVi%2FBeej-cn-20140429.zip?alt=media&token=de27f96b-2aed-4c97-8879-649638c7559f) - B. Hall, 廖亚伦译 (PDF) 363 | * [C 语言常见问题集](http://c-faq-chn.sourceforge.net/ccfaq/ccfaq.html) 364 | * [Linux C 编程一站式学习](http://docs.linuxtone.org/ebooks/C&CPP/c/) 365 | 366 | 367 | ### C Sharp 368 | 369 | * [精通C#(第6版)](http://book.douban.com/subject/24827879/) 370 | 371 | 372 |

C++

373 | 374 | * [100个gcc小技巧](https://github.com/hellogcc/100-gcc-tips/blob/master/src/index.md) 375 | * [100个gdb小技巧](https://github.com/hellogcc/100-gdb-tips/blob/master/src/index.md) 376 | * [简单易懂的C魔法](http://www.nowamagic.net/librarys/books/contents/c) 377 | * [像计算机科学家一样思考(C++版)](http://www.ituring.com.cn/book/1203) (《How To Think Like a Computer Scientist: C++ Version》中文版) 378 | * [C 语言编程透视](https://tinylab.gitbooks.io/cbook/content/) 379 | * [C/C++ Primer](https://github.com/andycai/cprimer) - andycai 380 | * [C++ 并发编程指南](https://github.com/forhappy/Cplusplus-Concurrency-In-Practice) 381 | * [C++ FAQ LITE(中文版)](http://www.sunistudio.com/cppfaq/) 382 | * [C++ Primer 5th Answers](https://github.com/Mooophy/Cpp-Primer) 383 | * [C++ Template 进阶指南](https://github.com/wuye9036/CppTemplateTutorial) 384 | * [CGDB中文手册](https://github.com/leeyiw/cgdb-manual-in-chinese) 385 | * [Cmake 实践](https://web.archive.org/web/20170615174144/http://sewm.pku.edu.cn/src/paradise/reference/CMake%20Practice.pdf) (PDF) 386 | * [GNU make 指南](http://docs.huihoo.com/gnu/linux/gmake.html) 387 | * [Google C++ 风格指南](http://zh-google-styleguide.readthedocs.org/en/latest/google-cpp-styleguide/contents/) 388 | * [ZMQ 指南](https://github.com/anjuke/zguide-cn) 389 | 390 | 391 | ### CoffeeScript 392 | 393 | * [CoffeeScript 编程风格指南](https://github.com/elrrrrrrr/coffeescript-style-guide/blob/master/README-ZH.md) 394 | * [CoffeeScript 编码风格指南](https://github.com/geekplux/coffeescript-style-guide) 395 | * [CoffeeScript 中文](http://coffee-script.org) 396 | 397 | 398 | ### Dart 399 | 400 | * [Dart 语言导览](http://dart.lidian.info/wiki/Language_Tour) 401 | 402 | 403 | ### Elasticsearch 404 | 405 | * [Elasticsearch 权威指南](https://github.com/looly/elasticsearch-definitive-guide-cn) (《Elasticsearch the definitive guide》中文版) 406 | * [Mastering Elasticsearch(中文版)](http://udn.yyuap.com/doc/mastering-elasticsearch/) 407 | 408 | 409 | ### Elixir 410 | 411 | * [Elixir 编程语言教程](https://elixirschool.com/cn/) (Elixir School) 412 | * [Elixir Getting Started 中文翻译](https://github.com/Ljzn/ElixrGettingStartedChinese) 413 | * [Elixir元编程与DSL 中文翻译](https://github.com/Ljzn/MetaProgrammingInElixirChinese) 414 | * [Phoenix 框架中文文档](https://mydearxym.gitbooks.io/phoenix-doc-in-chinese/content/) 415 | 416 | 417 | ### Erlang 418 | 419 | * [Erlang 并发编程](https://github.com/liancheng/cpie-cn) (《Concurrent Programming in Erlang (Part I)》中文版) 420 | 421 | 422 | ### Fortran 423 | 424 | * [Fortran77和90/95编程入门](http://micro.ustc.edu.cn/Fortran/ZJDing/) 425 | 426 | 427 | ### Golang 428 | 429 | * [神奇的 Go 语言](http://go.ctolib.com/docs/read/magical-go-c-index.html) 430 | * [学习Go语言](http://mikespook.com/learning-go/) 431 | * [Go 编程基础](https://github.com/Unknwon/go-fundamental-programming) 432 | * [Go 官方文档翻译](https://github.com/golang-china/golangdoc.translations) 433 | * [Go 简易教程](https://github.com/songleo/the-little-go-book_ZH_CN) (《[The Little Go Book](https://github.com/karlseguin/the-little-go-book)》中文版) 434 | * [Go 入门指南](https://github.com/Unknwon/the-way-to-go_ZH_CN) (《The Way to Go》中文版) 435 | * [Go 语法树入门](https://github.com/chai2010/go-ast-book) 436 | * [Go 语言标准库](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) 437 | * [Go 语言高级编程(Advanced Go Programming)](https://github.com/chai2010/advanced-go-programming-book) 438 | * [Go 语言实战笔记](https://github.com/rujews/go-in-action-notes) 439 | * [Go 指南](https://tour.go-zh.org/list) (《A Tour of Go》中文版) 440 | * [Go Web 编程](https://github.com/astaxie/build-web-application-with-golang) 441 | * [Go命令教程](https://github.com/hyper-carrot/go_command_tutorial) 442 | * [Go实战开发](https://github.com/astaxie/Go-in-Action) 443 | * [Go语言博客实践](https://github.com/achun/Go-Blog-In-Action) 444 | * [Java程序员的Golang入门指南](http://blog.csdn.net/dc_726/article/details/46565241) 445 | * [Network programming with Go 中文翻译版本](https://github.com/astaxie/NPWG_zh) 446 | * [Revel 框架手册](http://gorevel.cn/docs/manual/index.html) 447 | 448 | 449 | ### Groovy 450 | 451 | * [实战 Groovy 系列](http://www.ibm.com/developerworks/cn/java/j-pg/) 452 | 453 | 454 | ### Haskell 455 | 456 | * [Haskell 趣学指南](https://learnyouahaskell.mno2.org) 457 | * [Real World Haskell 中文版](http://cnhaskell.com) 458 | 459 | 460 | ### HTML / CSS 461 | 462 | * [前端代码规范](http://alloyteam.github.io/CodeGuide/) - 腾讯AlloyTeam团队 463 | * [通用 CSS 笔记、建议与指导](https://github.com/chadluo/CSS-Guidelines/blob/master/README.md) 464 | * [学习CSS布局](http://zh.learnlayout.com) 465 | * [Bootstrap 4 繁體中文手冊](https://bootstrap.hexschool.com) - 六角學院 466 | * [CSS3 Tutorial 《CSS3 教程》](https://github.com/waylau/css3-tutorial) 467 | * [CSS参考手册](http://css.doyoe.com) 468 | * [Emmet 文档](http://yanxyz.github.io/emmet-docs/) 469 | * [HTML5 教程](http://www.w3school.com.cn/html5/index.asp) 470 | * [HTML和CSS编码规范](http://codeguide.bootcss.com) 471 | * [Sass Guidelines 中文](http://sass-guidelin.es/zh/) 472 | 473 | 474 | ### iOS 475 | 476 | * [网易斯坦福大学公开课:iOS 7应用开发字幕文件](https://github.com/jkyin/Subtitle) 477 | * [Apple Watch开发初探](http://nilsun.github.io/apple-watch/) 478 | * [Google Objective-C Style Guide 中文版](http://zh-google-styleguide.readthedocs.org/en/latest/google-objc-styleguide/) 479 | * [iOS7人机界面指南](http://isux.tencent.com/ios-human-interface-guidelines-ui-design-basics-ios7.html) 480 | * [iOS开发60分钟入门](https://github.com/qinjx/30min_guides/blob/master/ios.md) 481 | * [iPhone 6 屏幕揭秘](http://wileam.com/iphone-6-screen-cn/) 482 | 483 | 484 | 485 | ### Java 486 | 487 | #### 🔍 PDF 下载 488 | 489 | > 直接在 [编程导航](https://www.code-nav.cn) 搜索下列书名即可 490 | 491 | - 码出高效-阿里巴巴 Java 开发手册 492 | - Camel in Action 493 | - Effective Java 2nd Edition 英文版 494 | - Head First Java 第二版 495 | - Head First Java 中文高清版 496 | - Java 8实战 497 | - Java编辑思想(第四版) 498 | - Java并发编程的艺术 499 | - JAVA并发编程实践 500 | - Java并发编程图册 501 | - Java从小白到大牛精简版 502 | - Java核心技术卷1基础知识原书第10版 503 | - Java核心技术卷2高级特性原书第10版 504 | - Java性能优化权威指南 505 | - Maven实战(高清完整带书签) 506 | - Spring 5 Recipes, 4th Edition 507 | - Spring in action 中文版(第4版) 508 | - 阿里巴巴Java开发手册--华山版 509 | - 阿里巴巴Java开发手册-嵩山版 510 | - 阿里巴巴Java开发手册--泰山版 511 | - 码出高效-阿里巴巴Java开发手册 512 | - 轻量级JavaEE企业应用实战(第四版) 513 | - 深入分析JavaWeb技术内幕 514 | - 深入剖析Tomcat 515 | - 《Effective Java中文版(第3版)》 516 | - 《深入理解Java虚拟机(第3版)》 517 | - 《Java解惑》 518 | - 《自己动手写Java虚拟机》 519 | - 《实战Java高并发程序设计》 520 | - 《编写高质量代码》 521 | - 《大型网站系统与Java中间件开发实践》 522 | - 《Java性能权威指南》 523 | - 《Java多线程编程核心技术》 524 | - 《Offer来了:Java面试核心知识点精讲(原理篇)》 525 | - 《Java技术手册(第6版)》 526 | - 《Java从小白到大牛》 527 | - 《Java从入门到精通(第4版)》 528 | - 《Java并发编程实战》 529 | - 《Java测试驱动开发》 530 | - 《21天学通Java》 531 | - 《JavaEE开发的颠覆者》 532 | - 《Java 8函数式编程》 533 | - 《Java编程的逻辑》 534 | 535 | 536 | 537 | #### 💻 在线阅读 538 | 539 | 540 | - [Effective Java(第3版)各章节的中英文学习参考](https://github.com/clxering/Effective-Java-3rd-edition-Chinese-English-bilingual) 541 | 542 | * [阿里巴巴 Java 开发手册](https://github.com/alibaba/p3c/blob/master/Java%E5%BC%80%E5%8F%91%E6%89%8B%E5%86%8C%EF%BC%88%E5%B5%A9%E5%B1%B1%E7%89%88%EF%BC%89.pdf) (PDF) 543 | * [用jersey构建REST服务](https://github.com/waylau/RestDemo) 544 | * [Activiti 5.x 用户指南](https://github.com/waylau/activiti-5.x-user-guide) 545 | * [Apache MINA 2 用户指南](https://github.com/waylau/apache-mina-2.x-user-guide) 546 | * [Apache Shiro 用户指南](https://github.com/waylau/apache-shiro-1.2.x-reference) 547 | * [Google Java编程风格指南](http://hawstein.com/2014/01/20/google-java-style/) 548 | * [H2 Database 教程](https://github.com/waylau/h2-database-doc) 549 | * [Java 编程思想](https://java.quanke.name) - quanke 550 | * [Java 编码规范](https://github.com/waylau/java-code-conventions) 551 | * [Java Servlet 3.1 规范](https://github.com/waylau/servlet-3.1-specification) 552 | * [Jersey 2.x 用户指南](https://github.com/waylau/Jersey-2.x-User-Guide) 553 | * [JSSE 参考指南](https://github.com/waylau/jsse-reference-guide) 554 | * [MyBatis中文文档](http://mybatis.github.io/mybatis-3/zh/index.html) 555 | * [Netty 4.x 用户指南](https://github.com/waylau/netty-4-user-guide) 556 | * [Netty 实战(精髓)](https://github.com/waylau/essential-netty-in-action) 557 | * [Nutz-book Nutz烹调向导](http://nutzbook.wendal.net) 558 | * [Nutz文档](https://nutzam.com/core/nutz_preface.html) 559 | * [REST 实战](https://github.com/waylau/rest-in-action) 560 | * [Spring Boot参考指南](https://github.com/qibaoguang/Spring-Boot-Reference-Guide) (:construction: *翻译中*) 561 | * [Spring Framework 4.x参考文档](https://github.com/waylau/spring-framework-4-reference) 562 | 563 | 564 | 565 | ### JavaScript 566 | 567 | * [命名函数表达式探秘](http://justjavac.com/named-function-expressions-demystified.html) - kangax、为之漫笔(翻译) (原始地址无法打开,所以此处地址为justjavac博客上的备份) 568 | * [你不知道的Javascript](https://github.com/getify/You-Dont-Know-JS/tree/1ed-zh-CN) 569 | * [深入理解JavaScript系列](http://www.cnblogs.com/TomXu/archive/2011/12/15/2288411.html) 570 | * [学用 JavaScript 设计模式](http://www.oschina.net/translate/learning-javascript-design-patterns) - 开源中国 571 | * [Airbnb JavaScript 规范](https://github.com/adamlu/javascript-style-guide) 572 | * [ECMAScript 6 入门](http://es6.ruanyifeng.com) - 阮一峰 573 | * [Google JavaScript 代码风格指南](http://bq69.com/blog/articles/script/868/google-javascript-style-guide.html) 574 | * [JavaScript 标准参考教程(alpha)](http://javascript.ruanyifeng.com) 575 | * [javascript 的 12 个怪癖](https://github.com/justjavac/12-javascript-quirks) 576 | * [JavaScript 秘密花园](http://bonsaiden.github.io/JavaScript-Garden/zh/) 577 | * [《JavaScript 模式》](https://github.com/jayli/javascript-patterns) (《JavaScript patterns》译本) 578 | * [Javascript 原理](https://web.archive.org/web/20170112164945/http://typeof.net/s/jsmech/) 579 | * [JavaScript Promise迷你书](http://liubin.github.io/promises-book/) 580 | * [Javascript编程指南](http://pij.robinqu.me) ([源码](https://github.com/RobinQu/Programing-In-Javascript)) 581 | * [JavaScript核心概念及实践](http://icodeit.org/jsccp/) (PDF) 582 | 583 | 584 | #### AngularJS 585 | 586 | * [构建自己的AngularJS](https://github.com/xufei/Make-Your-Own-AngularJS/blob/master/01.md) 587 | * [在Windows环境下用Yeoman构建AngularJS项目](http://www.waylau.com/build-angularjs-app-with-yeoman-in-windows/) 588 | * [AngularJS入门教程](https://github.com/zensh/AngularjsTutorial_cn) 589 | * [AngularJS最佳实践和风格指南](https://github.com/mgechev/angularjs-style-guide/blob/master/README-zh-cn.md) 590 | 591 | 592 | #### Backbone.js 593 | 594 | * [Backbone.js入门教程](http://www.the5fire.com/backbone-js-tutorials-pdf-download.html) (PDF) 595 | * [Backbone.js入门教程第二版](https://github.com/the5fire/backbonejs-learning-note) 596 | * [Backbone.js中文文档](http://www.css88.com/doc/backbone/) 597 | 598 | 599 | #### D3.js 600 | 601 | * [楚狂人的D3教程](http://www.cnblogs.com/winleisure/tag/D3.js/) 602 | * [官方API文档](https://github.com/mbostock/d3/wiki/API--%E4%B8%AD%E6%96%87%E6%89%8B%E5%86%8C) 603 | * [张天旭的D3教程](http://blog.csdn.net/zhang__tianxu/article/category/1623437) 604 | * [Learning D3.JS](http://d3.decembercafe.org) - 十二月咖啡馆 605 | 606 | 607 | #### Deno 608 | 609 | * [Deno 钻研之术](https://deno-tutorial.js.org) 610 | * [Deno进阶开发笔记](https://chenshenhai.com/deno_note) - 大深海 611 | 612 | 613 | #### Electron.js 614 | 615 | * [Electron 中文文档](https://wizardforcel.gitbooks.io/electron-doc/content) - WizardForcel 616 | * [Electron 中文文档](https://www.w3cschool.cn/electronmanual) - W3Cschool 617 | 618 | 619 | #### ExtJS 620 | 621 | * [Ext4.1.0 中文文档](http://extjs-doc-cn.github.io/ext4api/) 622 | 623 | 624 | #### impress.js 625 | 626 | * [impress.js的中文教程](https://github.com/kokdemo/impress.js-tutorial-in-Chinese) 627 | 628 | 629 | #### jQuery 630 | 631 | * [简单易懂的JQuery魔法](http://www.nowamagic.net/librarys/books/contents/jquery) 632 | * [How to write jQuery plugin](http://i5ting.github.io/How-to-write-jQuery-plugin/build/jquery.plugin.html) 633 | 634 | 635 | #### Node.js 636 | 637 | * [七天学会NodeJS](http://nqdeng.github.io/7-days-nodejs/) - 阿里团队 638 | * [使用 Express + MongoDB 搭建多人博客](https://github.com/nswbmw/N-blog) 639 | * [express.js 中文文档](http://expressjs.jser.us) 640 | * [Express框架](http://javascript.ruanyifeng.com/nodejs/express.html) 641 | * [koa 中文文档](https://github.com/guo-yu/koa-guide) 642 | * [JavaScript全栈工程师培训材料](http://nodejs.ctolib.com/docs/sfile/jstraining/engineering.html) 643 | * [Learn You The Node.js For Much Win! (中文版)](https://www.npmjs.com/package/learnyounode-zh-cn) 644 | * [Node debug 三法三例](http://i5ting.github.io/node-debug-tutorial/) 645 | * [Node.js 包教不包会](https://github.com/alsotang/node-lessons) 646 | * [Node.js Fullstack《從零到一的進撃》](https://github.com/jollen/nodejs-fullstack-lessons) 647 | * [Node入门](http://www.nodebeginner.org/index-zh-cn.html) 648 | * [Nodejs Wiki Book](https://github.com/nodejs-tw/nodejs-wiki-book) (繁体中文) 649 | * [nodejs中文文档](https://www.gitbook.com/book/0532/nodejs/details) 650 | * [The NodeJS 中文文档](https://www.gitbook.com/book/0532/nodejs/details) - 社区翻译 651 | 652 | 653 | #### React.js 654 | 655 | * [Learn React & Webpack by building the Hacker News front page](https://github.com/theJian/build-a-hn-front-page) 656 | * [React-Bits 中文文档](https://github.com/hateonion/react-bits-CN) 657 | * [React Native 中文文档(含最新Android内容)](http://wiki.jikexueyuan.com/project/react-native/) 658 | * [React webpack-cookbook](https://github.com/fakefish/react-webpack-cookbook) 659 | * [React.js 入门教程](http://fraserxu.me/intro-to-react/) 660 | * [React.js 中文文档](https://discountry.github.io/react/) 661 | 662 | 663 | #### Vue.js 664 | 665 | * [Vue.js中文文档](https://cn.vuejs.org/v2/guide/) 666 | 667 | 668 | #### Zepto.js 669 | 670 | * [Zepto.js 中文文档](http://css88.com/doc/zeptojs_api) 671 | 672 | 673 | ### LaTeX 674 | 675 | * [大家來學 LaTeX](https://github.com/49951331/graduate-project-102pj/blob/master/docs/latex123.pdf) (PDF) 676 | * [一份不太简短的 LaTeX2ε 介绍](http://ctan.org/pkg/lshort-zh-cn) 677 | * [LaTeX 笔记](http://www.dralpha.com/zh/tech/tech.htm) 678 | 679 | 680 | ### LISP 681 | 682 | * [ANSI Common Lisp 中文翻译版](http://acl.readthedocs.org/en/latest/) 683 | * [Common Lisp 高级编程技术](http://www.ituring.com.cn/minibook/862) (《On Lisp》中文版) 684 | 685 | 686 | ### Lua 687 | 688 | * [Lua 5.3 参考手册](http://www.w3cschool.cc/manual/lua53doc/contents.html) 689 | 690 | 691 | ### Markdown 692 | 693 | * [献给写作者的 Markdown 新手指南](http://www.jianshu.com/p/q81RER) 694 | * [Markdown 語法說明](https://markdown.tw) 695 | 696 | 697 | ### MySQL 698 | 699 | * [21分钟MySQL入门教程](http://www.cnblogs.com/mr-wid/archive/2013/05/09/3068229.html) 700 | * [MySQL索引背后的数据结构及算法原理](http://blog.codinglabs.org/articles/theory-of-mysql-index.html) 701 | 702 | 703 | ### NoSQL 704 | 705 | * [带有详细注释的 Redis 2.6 代码](https://github.com/huangz1990/annotated_redis_source) 706 | * [带有详细注释的 Redis 3.0 代码](https://github.com/huangz1990/redis-3.0-annotated) 707 | * [Disque 使用教程](http://disque.huangz.me) 708 | * [Redis 命令参考](http://redisdoc.com) 709 | * [Redis 设计与实现](http://redisbook.com) 710 | * [The Little MongoDB Book](https://github.com/justinyhuang/the-little-mongodb-book-cn/blob/master/mongodb.md) 711 | * [The Little Redis Book](https://github.com/JasonLai256/the-little-redis-book/blob/master/cn/redis.md) 712 | 713 | 714 | ### Perl 715 | 716 | * [Master Perl Today](https://github.com/fayland/chinese-perl-book) 717 | * [Perl 5 教程](https://web.archive.org/web/20150326073235/http://net.pku.edu.cn/~yhf/tutorial/perl/perl.html) 718 | * [Perl 教程](http://www.yiibai.com/perl) 719 | 720 | 721 | ### PHP 722 | 723 | * [深入理解 PHP 内核](http://www.php-internals.com/book/) 724 | * [CodeIgniter 使用手冊](https://codeigniter.org.tw/userguide3) 725 | * [Composer中文文档](http://docs.phpcomposer.com) 726 | * [Phalcon7中文文档](http://www.myleftstudio.com) 727 | * [PHP 之道](http://wulijun.github.io/php-the-right-way/) 728 | * [PHP标准规范中文版](https://psr.phphub.org) 729 | * [PHP中文手册](http://php.net/manual/zh/) 730 | * [Yii2中文文档](http://www.yiichina.com/doc/guide/2.0) 731 | 732 | 733 | #### Laravel 734 | 735 | * [Laravel 5.4 中文文档](http://d.laravel-china.org/docs/5.4) 736 | * [Laravel 6 中文文档](https://learnku.com/docs/laravel/6.x) 737 | * [Laravel 7 中文文档](https://learnku.com/docs/laravel/7.x) 738 | * [Laravel 8 中文文档](https://learnku.com/docs/laravel/8.x) 739 | 740 | 741 | #### Symfony 742 | 743 | * [Symfony 2 实例教程](https://wusuopu.gitbooks.io/symfony2_tutorial/content) 744 | * [Symfony 5 快速开发](https://symfony.com/doc/5.0/the-fast-track/zh_CN/index.html) 745 | 746 | 747 | ### PostgreSQL 748 | 749 | * [PostgreSQL 8.2.3 中文文档](http://works.jinbuguo.com/postgresql/menu823/index.html) 750 | * [PostgreSQL 9.3.1 中文文档](http://www.postgres.cn/docs/9.3/index.html) 751 | * [PostgreSQL 9.4.4 中文文档](http://www.postgres.cn/docs/9.4/index.html) 752 | * [PostgreSQL 9.5.3 中文文档](http://www.postgres.cn/docs/9.5/index.html) 753 | * [PostgreSQL 9.6.0 中文文档](http://www.postgres.cn/docs/9.6/index.html) 754 | 755 | 756 | ### Python 757 | 758 | * [简明 Python 教程](https://bop.molun.net) - Swaroop C H、沈洁元(翻译)、漠伦(翻译) 759 | * [人生苦短,我用python](https://www.cnblogs.com/derek1184405959/p/8579428.html) - (内含丰富的笔记以及各类教程) 760 | * [深入 Python 3](https://github.com/jiechic/diveintopython3) 761 | * [像计算机科学家一样思考Python](https://www.ctolib.com/docs/sfile/think-python-2e/0.html) - Allen B. Downey、大胖哥(翻译) 762 | * [Matplotlib 3.0.3 中文文档](http://www.osgeo.cn/matplotlib/) - (Online) 763 | * [Numpy 1.16 中文文档](http://www.osgeo.cn/numpy/) - (Online) 764 | * [Python 3 文档(简体中文) 3.2.2 documentation](http://docspy3zh.readthedocs.org/en/latest/) 765 | * [Python 3.8.0a3中文文档](http://www.osgeo.cn/cpython/) - (目前在线最全的中文文档了,Online) 766 | * [Python 中文学习大本营](http://www.pythondoc.com) 767 | * [Python 最佳实践指南](https://pythonguidecn.readthedocs.io/zh/latest/) 768 | * [Python Cookbook第三版](http://python3-cookbook.readthedocs.io/zh_CN/latest/) - David Beazley、Brian K.Jones、熊能(翻译) 769 | * [Python教程 - 廖雪峰的官方网站](http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000) 770 | * [Python进阶](https://interpy.eastlakeside.com) - eastlakeside 771 | * [Python之旅](http://funhacks.net/explore-python) - Ethan 772 | * [Tornado 6.1 中文文档](http://www.osgeo.cn/tornado/) - (网络上其他的都是较旧版本的,Online) 773 | 774 | 775 | #### Django 776 | 777 | * [Django 1.11.6 中文文档](https://www.yiyibooks.cn/xx/Django_1.11.6/index.html) 778 | * [Django 2.2.1 中文文档](http://www.osgeo.cn/django/) - (这个很新,也很全,Online) 779 | * [Django 搭建个人博客教程 (2.1)](https://www.dusaiphoto.com/article/detail/2) - (杜赛) (HTML) 780 | * [Django book 2.0](http://djangobook.py3k.cn/2.0/) 781 | * [Django Girls 教程 (1.11)](https://tutorial.djangogirls.org/zh/) (HTML) 782 | 783 | 784 | ### R 785 | 786 | * [153分钟学会 R](http://cran.r-project.org/doc/contrib/Liu-FAQ.pdf) (PDF) 787 | * [统计学与 R 读书笔记](http://cran.r-project.org/doc/contrib/Xu-Statistics_and_R.pdf) (PDF) 788 | * [用 R 构建 Shiny 应用程序](http://yanping.me/shiny-tutorial/) (《Building 'Shiny' Applications with R》中文版) 789 | * [R 导论](http://cran.r-project.org/doc/contrib/Ding-R-intro_cn.pdf) (《An Introduction to R》中文版) (PDF) 790 | 791 | 792 | ### reStructuredText 793 | 794 | * [reStructuredText 入门](http://www.pythondoc.com/sphinx/rest.html) 795 | 796 | 797 | ### Ruby 798 | 799 | * [笨方法学 Ruby](http://lrthw.github.io) 800 | * [Rails 风格指南](https://github.com/JuanitoFatas/rails-style-guide/blob/master/README-zhCN.md) 801 | * [Ruby 风格指南](https://github.com/JuanitoFatas/ruby-style-guide/blob/master/README-zhCN.md) 802 | * [Ruby on Rails 实战圣经](https://ihower.tw/rails4/) 803 | * [Ruby on Rails 指南](http://guides.ruby-china.org) 804 | * [Sinatra](http://www.sinatrarb.com/intro-zh.html) 805 | 806 | 807 | ### Rust 808 | 809 | * [通过例子学习 Rust](https://github.com/rustcc/rust-by-example/) 810 | * [Rust 官方教程](https://github.com/KaiserY/rust-book-chinese) 811 | * [Rust 语言学习笔记](https://github.com/photino/rust-notes) 812 | * [RustPrimer](https://github.com/rustcc/RustPrimer) 813 | 814 | 815 | ### Scala 816 | 817 | * [Effective Scala](http://twitter.github.io/effectivescala/index-cn.html) 818 | * [Scala 初学者指南](https://www.gitbook.com/book/windor/beginners-guide-to-scala/details) (《The Neophyte's Guide to Scala》中文版) 819 | * [Scala 课堂](http://twitter.github.io/scala_school/zh_cn/index.html) (Twitter的Scala中文教程) 820 | 821 | 822 | ### Scheme 823 | 824 | * [Scheme 入门教程](http://deathking.github.io/yast-cn/) (《Yet Another Scheme Tutorial》中文版) 825 | 826 | 827 | ### Scratch 828 | 829 | * [创意计算课程指南](http://cccgchinese.strikingly.com) 830 | 831 | 832 | ### Shell 833 | 834 | * [Shell 编程范例](https://tinylab.gitbooks.io/shellbook/content) - 泰晓科技 835 | * [Shell 编程基础](http://wiki.ubuntu.org.cn/Shell%E7%BC%96%E7%A8%8B%E5%9F%BA%E7%A1%80) 836 | * [Shell 脚本编程30分钟入门](https://github.com/qinjx/30min_guides/blob/master/shell.md) 837 | * [shell-book](http://me.52fhy.com/shell-book/) 838 | * [The Linux Command Line 中文版](http://billie66.github.io/TLCL/book/) 839 | 840 | 841 | ### Swift 842 | 843 | * [《The Swift Programming Language》中文版](https://www.gitbook.com/book/numbbbbb/-the-swift-programming-language-/details) 844 | 845 | 846 | ### TypeScript 847 | 848 | * [TypeScript 入门教程](https://www.runoob.com/w3cnote/getting-started-with-typescript.html) 849 | * [TypeScript 中文网](https://www.tslang.cn) 850 | * [TypeScript Deep Dive 中文版](https://github.com/jkchao/typescript-book-chinese) 851 | 852 | 853 | ### VBA (Microsoft Visual Basic Applications) 854 | 855 | * [简明Excel VBA](https://github.com/Youchien/concise-excel-vba) 856 | 857 | 858 | ### Vim 859 | 860 | * [大家來學 VIM](http://www.study-area.org/tips/vim/index.html) 861 | 862 | 863 | ### Visual Prolog 864 | 865 | * [Visual Prolog 7边练边学](http://wiki.visual-prolog.com/index.php?title=Visual_Prolog_for_Tyros_in_Chinese) 866 | * [Visual Prolog 7初学指南](http://wiki.visual-prolog.com/index.php?title=A_Beginners_Guide_to_Visual_Prolog_in_Chinese) 867 | 868 | 869 | ### WebAssembly 870 | 871 | * [C/C++面向WebAssembly编程](https://github.com/3dgen/cppwasm-book) 872 | 873 | 874 | 875 | ## 免责声明 876 | 877 | 书籍全部来源于网络其他人的整理,我这里只是收集整理了他们的链接,如有侵权,非常非常抱歉,请马上联系我,我立刻删除对应链接。我的微信:liyupi66 -------------------------------------------------------------------------------- /贴心教程/README.md: -------------------------------------------------------------------------------- 1 | # 贴心教程 2 | 3 | > 各种编程语言和方向的教程,在学编程的路上不再迷路! 4 | > 5 | > 推荐在 [编程导航](https://www.code-nav.cn) 直接搜索教程! 6 | 7 | 8 | 9 | ## 目录 10 | 11 | - [前端](#前端) 12 | - [Java](#Java) 13 | - [Java源码教程](#Java源码教程) 14 | - [Java文档教程](#Java文档教程) 15 | - [Python](#Python) 16 | - [Go](#Go) 17 | - [PHP](#PHP) 18 | - [算法](#算法) 19 | - [网络](#网络) 20 | - [设计模式](#设计模式) 21 | - [Linux](#Linux) 22 | - [人工智能](#人工智能) 23 | - [测试](#测试) 24 | - [Git](#Git) 25 | - [其他](#其他) 26 | 27 | 28 | 29 | ## 前端 30 | 31 | [freeCodecamp](https://www.code-nav.cn/rd/?rid=023ce9555ff9c91803ef678f18677539):适合初学者的在线闯关式编程学习网站 32 | 33 | [2019 黑马程序员 pink 老师前端入门视频教程](https://www.bilibili.com/video/BV14J4114768) 34 | 35 | 🔐 [全套保姆级前端教程 + 课件 + 笔记 +实战](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 36 | 37 | [学习 CSS 布局](https://zh.learnlayout.com/) 38 | 39 | [玩游戏学 CSS Flex 布局](https://www.code-nav.cn/rd/?rid=b00064a7601c19e702d2dc4f6ff220ff) 40 | 41 | [Vue 源码分析](http://caibaojian.com/vue-design/) 42 | 43 | [阮一峰 Fetch API 教程](https://www.code-nav.cn/rd/?rid=79550af2600bc6a80090643318097cd3) 44 | 45 | [Node.js 官方中文教程](https://www.code-nav.cn/rd/?rid=ce805e786002c337048a062529e9ef69) 46 | 47 | [现代 JavaScript 教程](https://www.code-nav.cn/rd/?rid=023ce95560010c85048186a32e74c8a8) 48 | 49 | [阮一峰 ES6 入门教程](https://www.code-nav.cn/rd/?rid=ce805e785ff9a67803d2b06d56847644) 50 | 51 | 52 | 53 | ## Java 54 | 55 | ### Java源码教程 56 | 57 | [tutorials](https://github.com/eugenp/tutorials):一系列小而专注的教程集合 58 | 59 | [SpringAll](https://github.com/wuyouzhuguli/SpringAll):Spring 系列源码教程 60 | 61 | [Spring Boot Demo](https://github.com/xkcoding/spring-boot-demo):通过 Demo 深度学习并实战 SpringBoot 62 | 63 | [spring-boot-examples](https://github.com/ityouknow/spring-boot-examples):Spring Boot 使用的各种示例,以最简单、最实用为标准,帮助初学者快速掌握 Spring Boot 各组件的使用。 64 | 65 | [spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects):Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程。 66 | 67 | [TheAlgorithms/Java](https://github.com/TheAlgorithms/Java):所有算法的 Java 实现 68 | 69 | [java-design-patterns](https://github.com/iluwatar/java-design-patterns):Java 实现的设计模式 70 | 71 | 72 | 73 | ### Java文档教程 74 | 75 | #### 基础 76 | 77 | [On Java 8](https://www.code-nav.cn/rd/?rid=ce805e785ff309020339542e024a33ff):Java8 在线学习手册 78 | 79 | [JavaGuide - Java学习+面试指南](https://github.com/Snailclimb/JavaGuide) 80 | 81 | [LearningNotes](https://github.com/francistao/LearningNotes):一位 Java 学习者的笔记 82 | 83 | [java-learning](https://github.com/brianway/java-learning):旨在打造在线最佳的 Java 学习笔记,含博客讲解和源码实例,包括 Java SE 和 Java Web 84 | 85 | 86 | 87 | #### 类库框架 88 | 89 | [SpringBoot Guide](https://github.com/Snailclimb/springboot-guide) 90 | 91 | [springcloud-learning](https://github.com/macrozheng/springcloud-learning):一套涵盖大部分核心组件使用的Spring Cloud教程,包括Spring Cloud Alibaba及分布式事务Seata,基于Spring Cloud Greenwich及SpringBoot 2.1.7。22篇文章,篇篇精华,32个Demo,涵盖大部分应用场景。 92 | 93 | [spring-security-jwt-guide](https://github.com/Snailclimb/spring-security-jwt-guide) 94 | 95 | [guava-study](https://github.com/tiantiangao/guava-study):Java 知名类库 guava 学习 96 | 97 | [RxJavaLearningMaterial](https://github.com/Carson-Ho/RxJavaLearningMaterial):这是一份详细的RxJava学习攻略 & 指南 98 | 99 | 100 | 101 | #### 系统设计 102 | 103 | [mall-learning](https://github.com/macrozheng/mall-learning):mall学习教程,架构、业务、技术要点全方位解析。 104 | 105 | [miaosha](https://github.com/qiurunze123/miaosha):秒杀系统设计与实现 106 | 107 | 108 | 109 | #### 源码 110 | 111 | [JavaSourceCodeLearning](https://github.com/coderbruis/JavaSourceCodeLearning):Java流行框架源码分析:Spring源码、SpringBoot源码、SpringAOP源码、SpringSecurity源码、SpringSecurity OAuth2源码、JDK源码、Netty源码 112 | 113 | [LearningJDK](https://github.com/kangjianwei/LearningJDK):JDK源码阅读笔记 114 | 115 | 116 | 117 | ### 其他 118 | 119 | [2020 黑马程序员Java语言入门到精通](https://www.bilibili.com/video/BV1Qy4y1k7kL) 120 | 121 | 🔐 [全套保姆级 Java 教程 + 课件 + 笔记 +实战](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 122 | 123 | [How2J](https://www.code-nav.cn/rd/?rid=21ded5cb5ff2e50903acc7d93758fb15): Java 全栈开发教程网站 124 | 125 | [Learn Java](https://www.learnjavaonline.org/):国外 Java 学习网站 126 | 127 | [蚂蚁课堂免费课程](https://www.code-nav.cn/rd/?rid=023ce9555ffabe7d03fdd8004879672c) 128 | 129 | 🔐 [码出高效 - 阿里巴巴 Java 开发手册](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 130 | 131 | 🔐 [Java并发编程图册](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 132 | 133 | 134 | 135 | 136 | 137 | ## Python 138 | 139 | [2020 马士兵 Python 基础版全新教程](https://www.bilibili.com/video/BV1wD4y1o7AS) 140 | 141 | [Python123](https://www.code-nav.cn/rd/?rid=28ee4e3e600bbef500a1daf546a97ea5):提供更好的 Python 编程学习体验 142 | 143 | [极客战记](https://www.code-nav.cn/rd/?rid=b00064a76006fcd20024f098616497d6):以游戏的方式学习编程 144 | 145 | [Python 数据分析视频](https://www.code-nav.cn/rd/?rid=21ded5cb5ffbe492048e84ef00d9950e) 146 | 147 | [莫烦 Python](https://www.code-nav.cn/rd/?rid=21ded5cb5ffdab2804bd4d401ca6ef3e):汇集 Python 基础、人工智能、数据处理等学习教程 148 | 149 | [LearnPython](https://www.code-nav.cn/rd/?rid=023ce9555ff99ab703eaf3061169b669):英文网站,在阅读学习文档的同时在线编码实践 150 | 151 | 152 | 153 | ## Go 154 | 155 | [Go 语言之旅](https://www.code-nav.cn/rd/?rid=21ded5cb60015fc50515f85b67e4ee43) 156 | 157 | [Golang学习手册之:带你21周搞定Go语言](https://www.code-nav.cn/rd/?rid=ce805e78600109f20465b989459f4402) 158 | 159 | 160 | 161 | ## PHP 162 | 163 | [黑马 28 天 PHP 零基础入门到精通教程](https://www.code-nav.cn/rd/?rid=023ce9556001076004805f0a68184ff0) 164 | 165 | 166 | 167 | ## 算法 168 | 169 | [LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation):用动画的形式呈现解LeetCode题目的思路 170 | 171 | [fucking-algorithm](https://github.com/labuladong/fucking-algorithm):labuladong 的算法小抄 172 | 173 | [hello-algorithm](https://github.com/geekxh/hello-algorithm):「算法面试+算法知识」针对小白的算法训练 174 | 175 | 176 | 177 | ## 网络 178 | 179 | [2019 王道考研-计算机网络](https://www.bilibili.com/video/BV19E411D78Q) 180 | 181 | [计算机网络微课堂](https://www.code-nav.cn/rd/?rid=ce805e786001afe0047936d31e81f1a5) 182 | 183 | 184 | 185 | ## 设计模式 186 | 187 | [RefactoringGuru](https://www.code-nav.cn/rd/?rid=21ded5cb5ff594cd03fc8e586fcb7a34):免费在线学习设计模式 188 | 189 | 190 | 191 | ## Linux 192 | 193 | [阿里云开发者云体验实验室](https://www.code-nav.cn/rd/?rid=be7fb3985ffb0b92035f8e25182b404a) 194 | 195 | [鸟哥的 Linux 私房菜](https://www.code-nav.cn/rd/?rid=ce805e785ff45f72035ba35a7b65c087) 196 | 197 | 198 | 199 | ## 人工智能 200 | 201 | [《动手学深度学习》](https://www.code-nav.cn/rd/?rid=79550af26007a44f002c03c540aae91c) 202 | 203 | [谷歌机器学习速成课程](https://www.code-nav.cn/rd/?rid=28ee4e3e6007a33700310152473c67e6) 204 | 205 | 206 | 207 | ## 测试 208 | 209 | [2020 千锋软件测试教程](https://www.bilibili.com/video/BV14v411B7p5) 210 | 211 | 212 | 213 | ## Git 214 | 215 | [Learning Git Branching](https://www.code-nav.cn/rd/?rid=023ce9555ff567a5038cd13851a41fc6):通过一系列刺激的关卡挑战,逐步深入的学习 Git 216 | 217 | [猴子都能懂的GIT入门](https://backlog.com/git-tutorial/cn/) 218 | 219 | [first-contributions](https://github.com/firstcontributions/first-contributions/blob/master/translations/README.chs.md):教你第一次为 GitHub 仓库贡献 220 | 221 | 222 | 223 | ## 其他 224 | 225 | [程序员应该有的一些好习惯+面试必知事项!](https://github.com/Snailclimb/programmer-advancement) 226 | 227 | [中文文案排版指北](https://github.com/sparanoid/chinese-copywriting-guidelines) 228 | 229 | [程序员的自我修养](https://leohxj.gitbooks.io/a-programmer-prepares/content/) 230 | 231 | [英语进阶指南](https://github.com/byoungd/English-level-up-tips-for-Chinese) 232 | 233 | [程序员如何优雅的挣零花钱?](https://github.com/easychen/howto-make-more-money) 234 | 235 | [提问的智慧](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md) 236 | 237 | -------------------------------------------------------------------------------- /面试合集/README.md: -------------------------------------------------------------------------------- 1 | # 面试合集 2 | 3 | > 助你准备面试、复习面试知识、学习面试技巧,顺利拿到大厂 offer! 4 | > 5 | > 还可以在 [编程导航](https://www.code-nav.cn) 搜索面试资源! 6 | 7 | 8 | 9 | ## 目录 10 | 11 | - [知识总结](../面试合集/知识总结.md) 12 | - [面试题解](../面试合集/面试题解.md) 13 | - [优秀面经](../面试合集/优秀面经.md) 14 | 15 | -------------------------------------------------------------------------------- /面试合集/优秀面经.md: -------------------------------------------------------------------------------- 1 | # 优秀面经 2 | 3 | > 已收录几百份优秀大厂技术面经(18年后,阅读量 3w+),目前大部分源于 [牛客网面经专栏精华帖](https://www.nowcoder.com/discuss/experience/index)。 4 | 5 | 6 | 7 | ## 目录 8 | 9 | - [汇总](#汇总) 10 | - [开发](#开发) 11 | - [前端](#前端) 12 | - [Java](#Java) 13 | - [C++](#C++) 14 | - [Golang](#Golang) 15 | - [客户端](#客户端) 16 | - [测试开发](#测试开发) 17 | - [大数据](#大数据) 18 | - [其他](#其他) 19 | - [算法](#算法) 20 | - [测试](#测试) 21 | - [运维](#运维) 22 | - [嵌入式](#嵌入式) 23 | - [产品](#产品) 24 | - [运营](#运营) 25 | - [数据分析](#数据分析) 26 | - [策划](#策划) 27 | 28 | 29 | 30 | ## 汇总 31 | 32 | [2020秋招面经大汇总!(岗位划分)](https://www.nowcoder.com/discuss/205497) 33 | 34 | [2019春招面经大汇总!(公司划分)](https://www.nowcoder.com/discuss/161635) 35 | 36 | [2019春招面经大汇总!(岗位划分)](https://www.nowcoder.com/discuss/167046) 37 | 38 | [【技术类】2019校招技术类岗位面经汇总](https://www.nowcoder.com/discuss/146655) 39 | 40 | 41 | 42 | ## 开发 43 | 44 | ### 前端 45 | 46 | [个人秋招经验总结(前端方向)](https://www.nowcoder.com/discuss/258810) 标签:面经,阿里巴巴,美团,OPPO,有赞,前端工程师,校招 47 | 48 | [秋招总结,来自山区的双非本科少年(超长待机!)](https://www.nowcoder.com/discuss/141877) 标签:前端工程师,秋招,面经 49 | 50 | [百度阿里网易大疆等大小厂前端校招面筋](https://www.nowcoder.com/discuss/123161) 标签:面经,前端工程师,百度,大疆,阿里巴巴,网易,校招 51 | 52 | [秋招结束,9 offer,面经分享一波,加油骚年们!](https://www.nowcoder.com/discuss/125303) 标签:面经,宜信,完美世界,前端工程师,网易,搜狗,京东 53 | 54 | [记一次字节跳动前端面试,已拿offer](https://www.nowcoder.com/discuss/177482) 标签:实习,字节跳动,前端工程师,面经 55 | 56 | [史上最全的前端实习面试攻略,欢迎补充(求置顶)~~~~](https://www.nowcoder.com/discuss/84088) 标签:实习,前端,面经,百度,有赞,滴滴,字节跳动 57 | 58 | [暂时告别牛客,回馈社区。百度、美团、搜狐等前端面经集合](https://www.nowcoder.com/discuss/74836) 标签:前端工程师,面经,百度,春招,搜狐,美团,平安科技 59 | 60 | [前端工程师校招面试考点汇总(附面试题和答案)【持续更新】](https://www.nowcoder.com/discuss/164925) 标签:校招,前端,面经,前端工程师 61 | 62 | [应届渣渣前端面经(还有游戏策划以及鸡汤)](https://www.nowcoder.com/discuss/83804) 标签:面经,春招,校招,前端 63 | 64 | [字节跳动:4天时间从面试到收到offer](https://www.nowcoder.com/discuss/145751) 标签:字节跳动,面经,前端工程师 65 | 66 | 67 | 68 | ### Java 69 | 70 | [非科班硕士转行互联网的秋招之路](https://www.nowcoder.com/discuss/351093) 标签:腾讯,百度,美团,阿里巴巴,校招,C++工程师,面经 71 | 72 | [我艰难的春招之路](https://www.nowcoder.com/discuss/396949) 标签:Java工程师,实习,学习路径,面经 73 | 74 | [20届找实习C++后台面经](https://www.nowcoder.com/discuss/170607) 标签:腾讯,网易,CVTE,吉比特,实习,面经,C++工程师 75 | 76 | [【起风了,唯有努力生存】一个本硕非科班码农的后台开发之路](https://www.nowcoder.com/discuss/328508) 标签:腾讯,百度,阿里巴巴,字节跳动,校招,C++工程师,面经 77 | 78 | [来自一个二本C++菜鸡的秋招春招面经经历,累了,对不起](https://www.nowcoder.com/discuss/412546) 标签:百度,腾讯,校招,C++工程师,面经 79 | 80 | [秋招总结&Java心得(双非硕士,已拿11+5家Offer)](https://www.nowcoder.com/discuss/327041) 标签:菜鸟网络,字节跳动,度小满,校招,学习路径,Java工程师,面经 81 | 82 | [被疫情逼得gap year的完全菜鸡的春招之路。](https://www.nowcoder.com/discuss/427812) 标签:Shopee,华为,Java工程师,校招,面经 83 | 84 | [谨以此文纪念2019年春招](https://www.nowcoder.com/discuss/181212) 标签:阿里巴巴,腾讯,字节跳动,春招,面经,美团,Java工程师 85 | 86 | [2019秋招经验谈](https://www.nowcoder.com/discuss/122463) 标签:秋招,Java工程师,招商银行信用卡中心,海康威视,顺丰科技,vivo,银联 87 | 88 | [秋招心得](https://www.nowcoder.com/discuss/317888) 标签:Shopee,字节跳动,猿辅导,微软,校招,Java工程师,面经 89 | 90 | [非科班本科菜鸡投的337家(Java后台)](https://www.nowcoder.com/discuss/133333) 标签:Java,校招 91 | 92 | [2018 这一年](https://www.nowcoder.com/discuss/137593) 标签:面经,百度,阿里巴巴,腾讯,字节跳动 93 | 94 | [双非的秋招,感谢牛客](https://www.nowcoder.com/discuss/142181) 标签:面经,腾讯,秋招,Java工程师 95 | 96 | [二本本科Java上岸(滴滴京东58)2019秋招心得+面经](https://www.nowcoder.com/discuss/333912) 标签:滴滴,京东,阿里巴巴,58集团,校招,Java工程师,面经 97 | 98 | [碎碎念流水账特别长 of 自己的 Java 秋招](https://www.nowcoder.com/discuss/354154) 标签:面经,学习路径,校招,Java工程师 99 | 100 | [秋招之路:个人历程以及面经总结](https://www.nowcoder.com/discuss/344311) 标签:字节跳动,拼多多,校招,Java工程师,面经 101 | 102 | [【秋招面经总结】菜逼的坎坷之路(JAVA后台研发)](https://www.nowcoder.com/discuss/352030) 标签:面经,校招,Java工程师,阿里巴巴,美团,字节跳动,京东 103 | 104 | [阿里11面+EMC+网易+美团面经](https://www.nowcoder.com/discuss/105302) 标签:网易,阿里巴巴,美团,拼多多,面经,Java工程师,秋招 105 | 106 | [2018秋招阿里巴巴java笔试试题](https://www.nowcoder.com/discuss/67379) 标签:Java工程师 107 | 108 | [我的秋招经验分享(已拿BAT头条网易)](https://www.nowcoder.com/discuss/117071) 标签:校招,秋招,Java工程师,阿里巴巴,腾讯,字节跳动 109 | 110 | [20届的阿里 头条 网易 滴滴 百度 小米等Java面经](https://www.nowcoder.com/discuss/68289) 标签:阿里巴巴,网易,小米,百度,字节跳动,滴滴,Java 111 | 112 | [拿了5个offer,回馈牛友发一波面经(长文详细)](https://www.nowcoder.com/discuss/79051) 标签:面经 113 | 114 | [【总结】零基础学习一年拿到BAT三家offer](https://www.nowcoder.com/discuss/188241) 标签:阿里巴巴,腾讯,百度,春招,面经,笔经,Java工程师 115 | 116 | [本科生秋招经验总结帖](https://www.nowcoder.com/discuss/296586) 标签:腾讯,字节跳动,应用开发工程师,实习,校招,面经,Java工程师 117 | 118 | [双非渣硕校招总结+Java面经(网易阿里百度等)](https://www.nowcoder.com/discuss/134850) 标签:网易,阿里巴巴,百度,校招,Java工程师,面经 119 | 120 | [2018秋招笔试科大讯飞java笔试试题](https://www.nowcoder.com/discuss/67684) 标签:科大讯飞,笔试题目,Java工程师,校招 121 | 122 | [头条后台研发面经(共三面)](https://www.nowcoder.com/discuss/94233) 标签:字节跳动,面经,内推,Java工程师,秋招 123 | 124 | [一点点小经验和几家Java面经](https://www.nowcoder.com/discuss/138434) 标签:面经,秋招,阿里巴巴,大疆,网易,华为 125 | 126 | [感谢牛客网!发一波面经!阿里、网易游戏、京东等offer。](https://www.nowcoder.com/discuss/101712) 标签:面经,网易,网易互娱,京东,华为,Java工程师,秋招 127 | 128 | [非科班水硕的春招实习总结- Java 后台开发](https://www.nowcoder.com/discuss/186528) 标签:实习,面经,阿里巴巴,腾讯,滴滴,Java工程师 129 | 130 | [十面阿里,七面头条,六个Offer,春招结束](https://www.nowcoder.com/discuss/80156) 标签:春招,面经 131 | 132 | [成功上岸,最后一波回馈](https://www.nowcoder.com/discuss/176434) 标签:OPPO,拼多多,vivo,面经,校招,Java工程师 133 | 134 | [【Java后台开发面经】阿里|网易|头条|腾讯|华为](https://www.nowcoder.com/discuss/108655) 标签:面经,阿里巴巴,网易,字节跳动,腾讯,华为,Java工程师 135 | 136 | [三跨学生的面经(头条、拼多多、华为、vivo)](https://www.nowcoder.com/discuss/195640) 标签:腾讯,网易,拼多多,字节跳动,面经,Java工程师,阿里巴巴 137 | 138 | 139 | 140 | ### C++ 141 | 142 | [秋招反思录](https://www.nowcoder.com/discuss/271862) 标签:百度,快手,华为,OPPO,秋招,面经,C++工程师 143 | 144 | [互联网挂经合集(本咸鱼已去事业单位,勿念)](https://www.nowcoder.com/discuss/322691) 标签:京东,快手,米哈游,地平线机器人,校招,C++工程师,面经 145 | 146 | [从秋招到春招 一个自动化研究生的求职路](https://www.nowcoder.com/discuss/71150) 标签:阿里巴巴,腾讯,好未来,秋招,面经,C++工程师 147 | 148 | [通信专业转CS收获BAT等20+offer学习路线分析](https://www.nowcoder.com/discuss/384433) 标签:C++工程师,学习路径,面经,阿里巴巴,腾讯,字节跳动,百度 149 | 150 | [一个非科班普通211硕士如何拿到腾讯、百度等offer](https://www.nowcoder.com/discuss/142151) 标签:腾讯,百度,美团,京东,小米,面经,C++工程师 151 | 152 | [秋招结束,春招再战!(附面经)](https://www.nowcoder.com/discuss/125248) 标签:秋招,面经,去哪儿,腾讯,贝壳,C++工程师 153 | 154 | [干货!普通人的秋招经验分享.](https://www.nowcoder.com/discuss/334233) 标签:腾讯,美团,京东,小红书,校招,C++工程师,面经 155 | 156 | [c++工程师校招面试考点汇总(附面试题和答案)【持续更新】](https://www.nowcoder.com/discuss/164721) 标签:面经,校招,秋招,C++工程师 157 | 158 | [秋招结束了,总结和分享一下自己的苦逼经历~](https://www.nowcoder.com/discuss/65899) 标签:华为,深信服,C++工程师 159 | 160 | [网易互娱游戏研发岗面经(含腾讯ieg\IOS一面面经)](https://www.nowcoder.com/discuss/183113) 标签:腾讯,网易,面经,C++工程师,iOS工程师 161 | 162 | [秋招结束,整理一下。内含面筋(后台/c++)](https://www.nowcoder.com/discuss/124030) 标签:秋招,面经,百度,腾讯,网易,字节跳动,C++工程师 163 | 164 | [BAT 网易 头条 美团 等后台开发面经](https://www.nowcoder.com/discuss/150620) 标签:面经,春招,腾讯,阿里巴巴,网易,途家网,爱奇艺 165 | 166 | [batj,华为,深信服,普联面经(均已offer)](https://www.nowcoder.com/discuss/109698) 标签:百度,华为,深信服,面经,阿里巴巴,腾讯,京东 167 | 168 | [有幸被菜鸟开奖,结束秋招,回馈牛油](https://www.nowcoder.com/discuss/110317) 标签:秋招,面经,阿里巴巴,腾讯,百度,offer比较 169 | 170 | 171 | 172 | ### Golang 173 | 174 | [给以后的同学攒点golang的面经](https://www.nowcoder.com/discuss/145338) 标签:面经,小米,CVTE,点触科技,欢聚集团,Go 175 | 176 | 177 | 178 | ### 客户端 179 | 180 | [二本渣院的腾讯+阿里offer(Android面经)](https://www.nowcoder.com/discuss/189502) 标签:阿里巴巴,腾讯,安卓工程师,实习,面经 181 | 182 | [腾讯IEG,网易,字节 面经+总结+建议(游戏客户端方向)](https://www.nowcoder.com/discuss/293813) 标签:腾讯,字节跳动,网易雷火,网易互娱,面经,校招,游戏研发工程师 183 | 184 | 185 | 186 | ### 测试开发 187 | 188 | [已上岸字节,整理一波测开面经](https://www.nowcoder.com/discuss/374134) 标签:面经,校招,字节跳动,测试开发工程师 189 | 190 | [终于大橘已定,分享一波测开面经(美团、小米、华为、阿里等)](https://www.nowcoder.com/discuss/314536) 标签:美团,小米,华为,中国移动研究院,奇安信,测试开发工程师,面经 191 | 192 | [已上岸,感谢牛客,这是一个测试开发岗的基础知识整理。](https://www.nowcoder.com/discuss/393011) 标签:测试开发工程师,校招,面经 193 | 194 | [测试/测开面经](https://www.nowcoder.com/discuss/124011) 标签:招银网络,网易,腾讯,京东,秋招,面经,测试工程师 195 | 196 | 197 | 198 | ### 大数据 199 | 200 | [面经分享 数据开发/数据研发/数据分析](https://www.nowcoder.com/discuss/338699) 标签:数据开发工程师,阿里巴巴,腾讯,美团,拼多多,面经,校招 201 | 202 | 203 | 204 | ### 其他 205 | 206 | [普通女生银行校招记](https://www.nowcoder.com/discuss/340400) 标签:银行,面经 207 | 208 | [秋招银行+国企类笔试面试经验。](https://www.nowcoder.com/discuss/83653) 标签:面经 209 | 210 | [2020届菜鸡银行、国企、研究所艰辛求职路的经验分享](https://www.nowcoder.com/discuss/430730) 标签:校招,信息科技岗,中国农业银行,浦发银行,工商银行,MTK联发科技,中国电科 211 | 212 | [2020秋招 国企/银行校招经验](https://www.nowcoder.com/discuss/336382) 标签:校招,国企,银行 213 | 214 | [Google,腾讯,网易,微软,爱奇艺,字节跳动面经(长文)](https://www.nowcoder.com/discuss/82916) 标签:春招,面经,实习 215 | 216 | [补一个秋招经历吧,给那些怼过我的小朋友们](https://www.nowcoder.com/discuss/66184) 标签:阿里巴巴,腾讯,百度,小米,网易,京东 217 | 218 | [给正在备战春招/暑期实习的同学一些小建议](https://www.nowcoder.com/discuss/67028) 标签:阿里巴巴,腾讯,百度,华为 219 | 220 | 221 | 222 | ## 算法 223 | 224 | [一个双非渣硕的自我救赎之路](https://www.nowcoder.com/discuss/328830) 标签:阿里巴巴,字节跳动,百度,校招,算法工程师,面经,学习路径 225 | 226 | [关于找工作,说点对后人有用的话(内附机器学习算法岗面经)](https://www.nowcoder.com/discuss/123128) 标签:算法工程师,面经,百度,校招 227 | 228 | [十余家公司大数据开发面经](https://www.nowcoder.com/discuss/109518) 标签:腾讯,网易,美团,秋招,算法工程师,面经 229 | 230 | [谷歌,微软,阿里,美团实习生面经](https://www.nowcoder.com/discuss/81353) 标签:实习,面经,阿里巴巴,微软,google,美团 231 | 232 | [今日头条-算法岗-面经-加面-offer(9月5日更新)](https://www.nowcoder.com/discuss/95654) 标签:字节跳动,秋招,机器学习,算法工程师,面经 233 | 234 | [记录一下秋招目前的情况。。。](https://www.nowcoder.com/discuss/258629) 标签:依图科技,小红书,贝壳,华为,校招,算法工程师,面经 235 | 236 | [2019秋招总结(算法工程师,非科班,已拿6+offer)](https://www.nowcoder.com/discuss/331793) 标签:面经,算法工程师,校招,阿里巴巴,华为,拼多多,小米 237 | 238 | [秋招总结:非机器学习科班学生漫长的算法工程师上岸之旅](https://www.nowcoder.com/discuss/326300) 标签:字节跳动,百度,华为,校招,算法工程师,面经 239 | 240 | [秋招c++面经,少量算法、java,百度、滴滴、京东、58等](https://www.nowcoder.com/discuss/347468) 标签:京东,滴滴,58集团,校招,算法工程师,C++工程师,面经 241 | 242 | [计算机视觉算法岗面经:两万字啊你确定不看看](https://www.nowcoder.com/discuss/128148) 标签:面经,腾讯,阿里巴巴,字节跳动,旷视,算法工程师,秋招 243 | 244 | [机器学习/算法校招面试考点汇总(附面试题和答案)【持续更新】](https://www.nowcoder.com/discuss/165930) 标签:百度,英特尔,校招,机器学习,面经,笔试题目,算法工程师 245 | 246 | [算法工程师面经 百寒拼菇腾作网3娱快书p字 附答案](https://www.nowcoder.com/discuss/231656) 标签:面经,校招,算法工程师,秋招,笔经,春招 247 | 248 | [转行渣硕的算法路,记录走过的坑和一些笔经面经给转行算法的同学](https://www.nowcoder.com/discuss/295287) 标签:华为,OPPO,滴滴,百度,校招,算法工程师,面经 249 | 250 | [字节跳动 算法全四面 详细面经 已拿意向书](https://www.nowcoder.com/discuss/216672) 标签:字节跳动,面经,校招,算法工程师 251 | 252 | [19校招阿里腾讯华为美团算法岗面经,均已拿offer](https://www.nowcoder.com/discuss/102053) 标签:腾讯,华为,面经,阿里巴巴,美团,算法工程师,秋招 253 | 254 | [19校招算法面经,腾讯美团已拿offer,百度阿里面试中](https://www.nowcoder.com/discuss/88679) 标签:面经,校招,算法工程师,美团,腾讯,阿里巴巴,百度 255 | 256 | [一名985小硕的CV算法秋招面经和经历总结](https://www.nowcoder.com/discuss/122246) 标签:秋招,面经,算法工程师,网易,腾讯,欢聚集团,BIGO 257 | 258 | [从ML零基础到斩获BAT offer ---我的秋招面经总结](https://www.nowcoder.com/discuss/138076) 标签:面经,算法工程师,秋招,拼多多,腾讯,蚂蚁集团,爱奇艺 259 | 260 | [水水的校招面经](https://www.nowcoder.com/discuss/135445) 标签:面经,微软,阿里巴巴,网易互娱,地平线机器人,算法工程师 261 | 262 | [回馈牛客,头条日常实习-数据挖掘offer(附一年面经)](https://www.nowcoder.com/discuss/142996) 标签:实习,面经,算法工程师,字节跳动,腾讯,滴滴,快手 263 | 264 | [牛客网历年算法面经汇总(部分为开发)](https://www.nowcoder.com/discuss/87657) 标签:面经,算法工程师 265 | 266 | [2017秋招面试总结-计算机视觉/深度学习算法](https://www.nowcoder.com/discuss/66114) 标签: 267 | 268 | [机器学习/深度学习 问题总结及解答](https://www.nowcoder.com/discuss/71482) 标签:内推,实习,春招,笔试题目,面经 269 | 270 | [一份完整的大疆2018校招笔试题和面经送给大家~](https://www.nowcoder.com/discuss/85302) 标签:大疆,面经,校招,笔经,机器学习 271 | 272 | [算法渣说一下自己碰到的算法面试](https://www.nowcoder.com/discuss/68828) 标签:内推,春招,实习,面经,算法工程师 273 | 274 | [面试知识点总结-图像处理/CV/ML/DL到HR面](https://www.nowcoder.com/discuss/66115) 275 | 276 | 277 | 278 | ## 测试 279 | 280 | [双非菜鸡的秋招春招上岸之路【完结版】](https://www.nowcoder.com/discuss/194827) 标签:腾讯,百度,微软,网易,京东,面经,秋招 281 | 282 | [真菜-不是假的菜-废话很多-测试-求职惨路(内附学习资料)](https://www.nowcoder.com/discuss/122667) 标签:测试工程师,面经,秋招,海康威视,网易,平安科技,迅雷 283 | 284 | 285 | 286 | ## 运维 287 | 288 | [迟到的面经,谢谢努力谢谢你](https://www.nowcoder.com/discuss/152227) 标签:秋招,面经,笔经,运维工程师,Python 289 | 290 | [我的秋招面经——问题篇](https://www.nowcoder.com/discuss/125144) 标签:秋招,面经,Python,运维工程师 291 | 292 | 293 | 294 | ## 嵌入式 295 | 296 | [华为,中兴,百度,CVTE,海康威视热乎乎的面经](https://www.nowcoder.com/discuss/143268) 标签:华为,面经,百度,CVTE,中兴,海康威视,嵌入式工程师 297 | 298 | 299 | 300 | ## 产品 301 | 302 | [越挫越勇的21互联网产品秋招日记|还愿京东美团](https://www.nowcoder.com/discuss/460599) 标签:面经,校招,京东,vivo,产品,美团 303 | 304 | [秋招结束,工科产品狗漫漫秋招路面经整理(小声bb)](https://www.nowcoder.com/discuss/134350) 标签:面经,产品,秋招,腾讯,阿里巴巴,京东,百度 305 | 306 | [春招艰难求职日记](https://www.nowcoder.com/discuss/387038) 标签:字节跳动,校招,产品,面经 307 | 308 | [2018年产品秋招总结(14个offer,面经+个人总结)](https://www.nowcoder.com/discuss/83942) 标签:面经,产品,秋招,腾讯,京东,链家网,大疆 309 | 310 | [【腾讯上岸还愿】产品岗 | 我面试的问题全都在这里了](https://www.nowcoder.com/discuss/365472) 标签:腾讯,面经,校招,产品 311 | 312 | [后知后觉的春招日记--腾讯csig&网易互娱&360toB](https://www.nowcoder.com/discuss/399328) 标签:实习,面经,行业应用岗,腾讯,网易,360公司,产品 313 | 314 | [无产品实习,我如何拿到字节跳动、快手产品offer(长文)](https://www.nowcoder.com/discuss/192697) 标签:面经,字节跳动,快手,产品,校招,用户研究员 315 | 316 | [超长春招面经总结 产品运营岗 已拿美团/京东/携程offer](https://www.nowcoder.com/discuss/82543) 标签:春招,面经,美团,运营,京东,携程,产品 317 | 318 | 319 | 320 | ## 运营 321 | 322 | [网申60+,面试15+,跨专业就业如何拿京东、携程offer](https://www.nowcoder.com/discuss/146823) 标签:秋招,京东,携程,运营,面经 323 | 324 | [秋招终于宣告结束,发篇总结留作纪念](https://www.nowcoder.com/discuss/138169) 标签:秋招,笔试题目,面经,吉比特,4399游戏,管培生,运营 325 | 326 | [你可能看过最全的TOP地产面经](https://www.nowcoder.com/discuss/338234) 标签:恒大健康,万科,龙湖集团,面经,校招 327 | 328 | [招商银行Fintech管培生经验(笔经面经训练营offer)](https://www.nowcoder.com/discuss/146540) 标签:招商银行,面经,笔经,校招,银行管培生 329 | 330 | [华为互联网运营经理-超详细面经(7k+字)](https://www.nowcoder.com/discuss/135153) 标签:面经,运营,华为,秋招,内推 331 | 332 | [秋招面经 | vivo、腾讯、携程、vipkid、金山WPS](https://www.nowcoder.com/discuss/151405) 标签:腾讯,携程,VIPKID,vivo,金山WPS,面经 333 | 334 | 335 | 336 | ## 数据分析 337 | 338 | [数据分析春秋招面试长文总结](https://www.nowcoder.com/discuss/391122) 标签:BIGO,猿辅导,数据分析工程师,斗鱼,面经,校招 339 | 340 | [2019数据分析求职经验贴【持续更新】](https://www.nowcoder.com/discuss/123711) 标签:数据分析工程师,网易,OPPO,顺丰科技,大数据开发工程师,面经,华为 341 | 342 | 343 | 344 | ## 策划 345 | 346 | [字节跳动游戏策划1234面经(已得offer)](https://www.nowcoder.com/discuss/209149) 标签:字节跳动,面经,游戏策划,校招 347 | 348 | [回顾下自己的秋招游戏策划求职路,也附些简单面经给大家参考下](https://www.nowcoder.com/discuss/322588) 标签:米哈游,盛趣游戏,搜狐畅游,校招,网易互娱,游戏策划,面经 349 | 350 | [【详细大型面经】已上岸,腾讯&字节游戏策划,送给有需要的人](https://www.nowcoder.com/discuss/346060) 标签:腾讯,字节跳动,游戏策划,面经,校招 351 | 352 | [【笔经面经】结束求职,游戏策划详细面经+少量其他,长篇预警](https://www.nowcoder.com/discuss/170611) 标签:春招,游戏策划,祖龙娱乐,面经 353 | 354 | -------------------------------------------------------------------------------- /面试合集/知识总结.md: -------------------------------------------------------------------------------- 1 | # 知识总结 2 | 3 | > 各编程语言和方向的系统化知识汇总,帮助你制定好计划,提升学习 or 复习效率! 4 | > 5 | 6 | 7 | 8 | ## 目录 9 | 10 | - [汇总](#汇总) 11 | - [前端](#前端) 12 | - [后端](#后端) 13 | - [C++](#C++) 14 | - [Java](#Java) 15 | - [算法](#算法) 16 | - [测试](#测试) 17 | 18 | 19 | 20 | ## 汇总 21 | 22 | [【备战春招】互联网行业2020年春招攻略(含21届&22届)](https://www.nowcoder.com/discuss/581786) 23 | 24 | [【备战攻略】2021届互联网行业最强秋招备战攻略](https://www.nowcoder.com/discuss/442274) 25 | 26 | [【备战秋招】2020届秋招备战攻略](https://www.nowcoder.com/discuss/197116) 27 | 28 | [【备战秋招】2019届秋招备战攻略](https://www.nowcoder.com/discuss/83857) 29 | 30 | [interviews](https://github.com/kdn251/interviews):获得工作必备知识(纯英文) 31 | 32 | 33 | 34 | ## 前端 35 | 36 | [牛客前端工程师面试宝典](https://www.nowcoder.com/tutorial/96/f5212664ab664984882b00635066ded2) 37 | 38 | 39 | 40 | ## 后端 41 | 42 | [CS-Notes 技术面试必备基础知识](https://github.com/CyC2018/CS-Notes) 43 | 44 | [advanced-java](https://github.com/doocs/advanced-java):后端进阶知识完全扫盲 45 | 46 | [miaosha](https://github.com/qiurunze123/miaosha):秒杀系统设计与实现 47 | 48 | [architect-awesome](https://github.com/xingshaocheng/architect-awesome):后端架构师技术图谱 49 | 50 | [fullstack tutorial](https://github.com/frank-lam/fullstack-tutorial):后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 51 | 52 | [mall-learning](https://github.com/macrozheng/mall-learning):mall学习教程,架构、业务、技术要点全方位解析。 53 | 54 | 55 | 56 | ### C++ 57 | 58 | [牛客 C++ 工程师面试宝典](https://www.nowcoder.com/tutorial/93/8ba2828006dd42879f3a9029eabde9f1) 59 | 60 | [C/C++ 技术面试基础知识总结](https://github.com/huihut/interview) 61 | 62 | 63 | 64 | ### Java 65 | 66 | [牛客 Java 工程师面试宝典](https://www.nowcoder.com/tutorial/94/ea1986fcff294f6292385703e94689e8) 67 | 68 | [JavaGuide](https://github.com/Snailclimb/JavaGuide):Java学习+面试指南 69 | 70 | [advanced-java](https://github.com/doocs/advanced-java):互联网 Java 工程师进阶知识完全扫盲 71 | 72 | [toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer): Java工程师成神之路 73 | 74 | [technology-talk](https://github.com/aalansehaiyang/technology-talk):汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 75 | 76 | [JavaFamily](https://github.com/AobingJava/JavaFamily):【Java面试+Java学习指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 77 | 78 | [JSCprout](https://github.com/crossoverJie/JCSprout):Java 核心知识库,包括基础、并发、算法 79 | 80 | [JGrowing](https://github.com/javagrowing/JGrowing):Java成长路线,但学到不仅仅是Java。 81 | 82 | [3y](https://github.com/ZhongFuCheng3y/3y):从Java基础、JavaWeb基础到常用的框架再到面试题都有完整的教程,几乎涵盖了Java后端必备的知识点 83 | 84 | [threadandjuc](https://github.com/qiurunze123/threadandjuc):Java 高并发多线程进阶 85 | 86 | [java-core-learning-example](https://github.com/JeffLi1993/java-core-learning-example):关于Java核心技术学习积累的例子,是初学者及核心技术巩固的最佳实践。 87 | 88 | 🔐 [Java并发编程图册](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 89 | 90 | 91 | 92 | ## 算法 93 | 94 | [牛客算法工程师面试宝典](https://www.nowcoder.com/tutorial/95/17d29b1ea4bc438f8d61e90db54e6cc0) 95 | 96 | [剑指Offer——名企面试官精讲典型编程题](https://github.com/gatieme/CodingInterviews) 97 | 98 | [fucking-algorithm](https://github.com/labuladong/fucking-algorithm):labuladong 的算法小抄 99 | 100 | 101 | 102 | ## 测试 103 | 104 | [牛客测试工程师面试宝典](https://www.nowcoder.com/tutorial/97/761542e6787144eb918eb8a77b961d86) 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /面试合集/面试题解.md: -------------------------------------------------------------------------------- 1 | # 面试题解 2 | 3 | > 从全网搜集到的优质面试题目及题解,有选择地阅读,坚持才能成功! 4 | > 5 | 6 | 7 | 8 | ## 目录 9 | 10 | - [汇总](#汇总) 11 | - [前端](#前端) 12 | - [后端](#后端) 13 | - [测试](#测试) 14 | 15 | 16 | 17 | ## 汇总 18 | 19 | [interview_internal_reference](https://github.com/0voice/interview_internal_reference):2021 年最新总结大厂技术面试题目 & 题解 20 | 21 | [50w字+的技术类校招面试题汇总(附答案+考点)【持续更新】](https://www.nowcoder.com/discuss/164726) 22 | 23 | [硬件,软件(后端开发,算法,数据分析等)历年企业笔试真题汇总](https://www.nowcoder.com/discuss/212783) 24 | 25 | 26 | 27 | ## 前端 28 | 29 | [前端面试每日 3+1](https://github.com/haizlin/fe-interview) 30 | 31 | [React 面试题目 & 题解](https://github.com/sudheerj/reactjs-interview-questions) 32 | 33 | 34 | 35 | ## 后端 36 | 37 | [JavaGuide 面试突击版](https://github.com/Snailclimb/JavaGuide-Interview) 38 | 39 | [牛客网 Java开发校招面试考点汇总(附面试题和答案)【持续更新】](https://www.nowcoder.com/discuss/161991) 40 | 41 | 🔐 [全套大厂 Java 面试题](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 42 | 43 | 44 | 45 | ## 测试 46 | 47 | [测试工程师校招面试考点汇总(附面试题和答案)【持续更新】](https://www.nowcoder.com/discuss/165276) 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /项目实战/README.md: -------------------------------------------------------------------------------- 1 | # 项目实战 2 | 3 | > 收录全网优秀的编程实战项目,包括代码合集、入门练手、完整系统和知名项目,可用于学习、竞赛或作为求职项目! 4 | > 5 | 6 | 7 | 8 | ## 目录 9 | 10 | - [Java](#Java) 11 | - [Java 代码合集](#Java代码合集) 12 | - [Java 入门练手](#Java入门练手) 13 | - [Java 完整系统](#Java完整系统) 14 | - [前端](#前端) 15 | - [C++](#C++) 16 | - [Python](#Python) 17 | - [Go](#Go) 18 | - [Android](#Android) 19 | - [微信小程序](#微信小程序) 20 | 21 | 22 | 23 | ## Java 24 | 25 | ### Java代码合集 26 | 27 | > 包括一些代码 Demo 教程、Java 代码片段等 28 | 29 | 30 | 31 | [tutorials](https://github.com/eugenp/tutorials):一系列小而专注的教程集合 32 | 33 | [SpringAll](https://github.com/wuyouzhuguli/SpringAll):Spring 系列源码教程 34 | 35 | [Spring Boot Demo](https://github.com/xkcoding/spring-boot-demo):通过 Demo 深度学习并实战 SpringBoot 36 | 37 | [spring-boot-examples](https://github.com/ityouknow/spring-boot-examples):Spring Boot 使用的各种示例,以最简单、最实用为标准,帮助初学者快速掌握 Spring Boot 各组件的使用。 38 | 39 | [spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects):Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程。 40 | 41 | [TheAlgorithms/Java](https://github.com/TheAlgorithms/Java):所有算法的 Java 实现 42 | 43 | [java-design-patterns](https://github.com/iluwatar/java-design-patterns):Java 实现的设计模式 44 | 45 | [JavaEETest](https://github.com/lenve/JavaEETest):Spring、SpringMVC、MyBatis、Spring Boot案例 46 | 47 | 48 | ### Java入门练手 49 | 50 | > 适合新手练手的小项目 51 | 52 | 53 | 54 | 55 | [Java 实现简单计算器](https://www.lanqiao.cn/courses/185) 56 | 57 | [Eclipse 实现 Java 编辑器](https://www.lanqiao.cn/courses/287) 58 | 59 | [一本糊涂账](https://how2j.cn/module/104.html) 60 | 61 | [Java 五子棋](https://blog.csdn.net/cnlht/article/details/8176130) 62 | 63 | [Java 中国象棋](https://blog.csdn.net/cnlht/article/details/8205733) 64 | 65 | [GitHub - JAVA GUI 图书馆管理系统](https://github.com/uboger/LibraryManager) 66 | 67 | [GitHub - JAVA 坦克大战小游戏](https://github.com/wangzhengyi/TankWar) 68 | 69 | [GitHub - Swing 编写的俄罗斯方块](https://github.com/HelloClyde/Tetris-Swing) 70 | 71 | 72 | 73 | ### Java完整系统 74 | 75 | > 适合系统地学习,可以写到简历上的企业级完整项目 76 | 77 | 78 | 79 | [趋势投资 SpringCloud](https://how2j.cn/module/170.html) 80 | 81 | [DiyTomcat](https://how2j.cn/module/176.html) 82 | 83 | 84 | 85 | #### 电商秒杀 86 | 87 | [天猫整站 J2EE](https://how2j.cn/module/115.html) 88 | 89 | [天猫整站 SSM](https://how2j.cn/module/134.html) 90 | 91 | [天猫整站 Springboot](https://how2j.cn/module/156.html) 92 | 93 | [mall-learning](https://github.com/macrozheng/mall-learning):mall学习教程,架构、业务、技术要点全方位解析。 94 | 95 | [SpringBoot 电商商城系统 Mall4j](https://github.com/gz-yami/mall4j) 96 | 97 | [SpringBoot 完整电商系统 Mall](https://github.com/macrozheng/mall):包括前台商城系统及后台管理系统,基于 SpringBoot+MyBatis 实现。 98 | 99 | [newbee-mall](https://github.com/newbee-ltd/newbee-mall):newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 100 | 101 | [paascloud-master](https://github.com/paascloud/paascloud-master):基于 spring cloud + vue + oAuth2.0,前后端分离商城系统 102 | 103 | [mall-swarm](https://github.com/macrozheng/mall-swarm):mall-swarm 是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch 等核心技术,同时提供了基于 Vue 的管理后台方便快速搭建系统。 104 | 105 | [onemall](https://github.com/YunaiV/onemall):mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。 106 | 107 | [litemall](https://github.com/linlinjava/litemall):又一个小商城。litemall = Spring Boot 后端 + Vue 管理员前端 + 微信小程序用户前端 + Vue 用户移动端。 108 | 109 | [xmall](https://github.com/Exrick/xmall):基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统 110 | 111 | [miaosha](https://github.com/qiurunze123/miaosha):秒杀系统设计与实现 112 | 113 | [SecKill](https://github.com/hfbin/Seckill):基于 SpringBoot+Mybatis+Redis+RabbitMQ 秒杀系统 114 | 115 | 116 | 117 | #### 博客论坛 118 | 119 | [Mblog](https://github.com/langhsu/mblog):开源 Java 博客系统 120 | 121 | [halo](https://github.com/halo-dev/halo):一个优秀的开源博客发布应用 122 | 123 | [forum-java](https://github.com/Qbian61/forum-java):一款用 Java(spring boot) 实现的现代化社区(论坛/问答/BBS/社交网络/博客)系统平台 124 | 125 | [vhr](https://github.com/lenve/vhr):微人事是一个前后端分离的人力资源管理系统,项目采用 SpringBoot+Vue 开发。 126 | 127 | [favorites-web](https://github.com/cloudfavorites/favorites-web):云收藏 Spring Boot 2.X 开源项目。云收藏是一个使用 Spring Boot 构建的开源网站,可以让用户在线随时随地收藏的一个网站,在网站上分类整理收藏的网站或者文章。 128 | 129 | [community](https://github.com/codedrinker/community):码问,开源论坛、问答系统,现有功能提问、回复、通知、最新、最热、消除零回复功能。技术栈 Spring、Spring Boot、MyBatis、MySQL/H2、Bootstrap 130 | 131 | [NiterForum](https://github.com/yourkevin/NiterForum):尼特社区-NiterForum-一个论坛/社区程序。后端Springboot/MyBatis/Maven/MySQL,前端Thymeleaf/Layui。可供初学者,学习、交流使用。 132 | 133 | [VBlog](https://github.com/lenve/VBlog):V部落,Vue+SpringBoot实现的多用户博客管理平台! 134 | 135 | [NiceFish](https://github.com/damoqiongqiu/NiceFish):SpringBoot/SpringCloud 前后端分离项目 136 | 137 | [My-Blog](https://github.com/ZHENFENG13/My-Blog): My Blog 是由 SpringBoot + Mybatis + Thymeleaf 等技术实现的 Java 博客系统,页面美观、功能齐全、部署简单及完善的代码,一定会给使用者无与伦比的体验。 138 | 139 | [My-Blog-layui](https://github.com/ZHENFENG13/My-Blog-layui):layui 版本的 My-Blog : A simple & beautiful blogging system implemented with spring-boot & layui & thymeleaf & mybatis My Blog 是由 SpringBoot + Layui + Mybatis + Thymeleaf 等技术实现的 Java 博客系统,页面美观、功能齐全、部署简单及完善的代码,一定会给使用者无与伦比的体验 140 | 141 | [symphony](https://github.com/88250/symphony):Java 实现的现代化社区 142 | 143 | 144 | 145 | #### 管理系统 146 | 147 | [Spring-Cloud-Admin](https://github.com/wxiaoqi/Spring-Cloud-Admin):Cloud-Admin 是国内首个基于 Spring Cloud 微服务化开发平台,具有统一授权、认证后台管理系统,其中包含具备用户管理、资源权限管理、网关 API 管理等多个模块,支持多业务系统并行开发,可以作为后端服务的开发脚手架。代码简洁,架构清晰,适合学习和直接项目中使用。核心技术采用 Spring Boot2 以及 Spring Cloud Gateway 相关核心组件,前端采用 vue-element-admin 组件。 148 | 149 | [bootshiro](https://github.com/tomsun28/bootshiro):基于 springboot+shiro+jwt 的资源无状态认证权限管理系统后端 150 | 151 | [悟空CRM](https://github.com/72crm/72crm-java):基于jfinal+vue+ElementUI的前后端分离CRM系统 152 | 153 | [EL-ADMIN](https://github.com/elunez/eladmin):基于 SpringBoot 的后台管理系统 154 | 155 | [pig](https://gitee.com/log4j/pig):基于 Spring Boot 2.2、 Spring Cloud Hoxton & Alibaba、 OAuth2 的 RBAC 权限管理系统。 156 | 157 | [FEBS-Shiro](https://github.com/wuyouzhuguli/FEBS-Shiro):Spring Boot 2.1.3,Shiro1.4.0 & Layui 2.5.4 权限管理系统。 158 | 159 | [Spring Boot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue):基于Spring Boot-Shiro-Vue 的权限管理 160 | 161 | [studentmanager](https://github.com/ZeroWdd/studentmanager):基于springboot+mybatis学生管理系统 162 | 163 | [jshERP](https://github.com/jishenghua/jshERP):华夏ERP基于SpringBoot框架和SaaS模式,立志为中小企业提供开源好用的ERP软件,目前专注进销存+财务功能。主要模块有零售管理、采购管理、销售管理、仓库管理、财务管理、报表查询、系统管理等。支持预付款、收入支出、仓库调拨、组装拆卸、订单等特色功能。拥有库存状况、出入库统计等报表。同时对角色和权限进行了细致全面控制,精确到每个按钮和菜单。 164 | 165 | [HotelSystem](https://github.com/misterchaos/HotelSystem):酒店管理系统 Java,tomcat,mysql,servlet,jsp实现,没有使用任何框架 166 | 167 | 168 | 169 | #### 开发平台 170 | 171 | [open-capacity-platform](https://github.com/2014shijina2014/open-capacity-platform):微服务能力开发平台 172 | 173 | [jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot):JeecgBoot是一款基于BPM的低代码平台!前后端分离架构 SpringBoot 2.x,SpringCloud,Ant Design&Vue,Mybatis-plus,Shiro,JWT,支持微服务。强大的代码生成器让前后端代码一键生成,实现低代码开发! 174 | 175 | 176 | 177 | #### 其他 178 | 179 | [学之思在线考试系统](https://github.com/mindskip/xzs):一款 java + vue 的前后端分离的考试系统 180 | 181 | [PassJava-Platform](https://github.com/Jackson0714/PassJava-Platform):一款面试刷题的 Spring Cloud 开源系统 182 | 183 | [kkFileView](https://github.com/kekingcn/kkFileView):使用spring boot打造文件文档在线预览项目 184 | 185 | [dynamic-datasource](https://github.com/baomidou/dynamic-datasource-spring-boot-starter):一个基于springboot的快速集成多数据源的启动器 186 | 187 | [moti-cloud](https://github.com/373675032/moti-cloud):莫提网盘,基于 SpringBoot+MyBatis+ThymeLeaf+BootStrap,适合初学者 188 | 189 | [threadandjuc](https://github.com/qiurunze123/threadandjuc):three-high-import 高可用\高可靠\高性能,三高多线程导入系统(该项目意义为理论贯通) 190 | 191 | [proxyee-down](https://github.com/proxyee-down-org/proxyee-down):http下载工具,基于http代理,支持多连接分块下载 192 | 193 | [hosp_order](https://github.com/sfturing/hosp_order):医院预约挂号系统,基于 SSM 框架 194 | 195 | 196 | 197 | 198 | #### 🔐 20 套 Java 项目源码 199 | 200 | [点击关注公众号『 程序员鱼皮 』领取!](https://636f-codenav-8grj8px727565176-1256524210.tcb.qcloud.la/yupi_wechat.png) 201 | 202 | 1. BBS论坛系统(jsp+sql) 203 | 204 | 2. ERP管理系统(jsp+servlet) 205 | 206 | 3. OA办公自动化管理系统(Struts1.2+Hibernate3.0+Spring2+DWR) 207 | 208 | 4. 博客系统(struts+hibernate+spring) 209 | 210 | 5. 车辆管理系统(struts+hibernate+spring+oracle) 211 | 212 | 6. 家庭理财系统(java+applet) 213 | 214 | 7. 教材订购系统(jsp+servlet+mysql) 215 | 216 | 8. 酒店管理系统(jsp+servlet+mysql) 217 | 218 | 9. 乐趣大型购物系统 v1.1(jsp+servlet+mysql) 219 | 220 | 10. 聊天系统(java+applet) 221 | 222 | 11. 内容管理系统(hibernate3+struts2+spring2) 223 | 224 | 12. 图书管理系统(struts+hibernate+spring) 225 | 226 | 13. 网上订餐系统(struts+spring+hibernate) 227 | 228 | 14. 网上书城系统(Struts+Hibernate+Mysql) 229 | 230 | 15. 网上书店系统(论文+jsp源程序) 231 | 232 | 16. 项目申报系统(Struts2+Spring+Hibernate+Jsp+Mysql5) 233 | 234 | 17. 学生成绩管理系统(SSH+MYSQL) 235 | 236 | 18. 阳光酒店管理系统(javaapplet+SQL) 237 | 238 | 19. 移动ssh项目(struts+spring+hibernate+oracle) 239 | 240 | 20. 音乐网站(JSP+SERVLET) 241 | 242 | 243 | 244 | ## 前端 245 | 246 | 待补充欢迎贡献 247 | 248 | 249 | 250 | ## C++ 251 | 252 | 待补充欢迎贡献 253 | 254 | 255 | 256 | ## Python 257 | 258 | 待补充欢迎贡献 259 | 260 | 261 | 262 | ## Go 263 | 264 | 一个 go 项目 265 | 266 | 待补充欢迎贡献 267 | 268 | 269 | 270 | ## Android 271 | 272 | 待补充欢迎贡献 273 | 274 | 275 | 276 | ## 微信小程序 277 | 278 | 待补充欢迎贡献 279 | --------------------------------------------------------------------------------