免费的编程中文书籍索引
============================
免费的编程中文书籍索引,欢迎投稿。
## 参与交流
欢迎大家讲珍藏已久的经典免费书籍共享出来,您可以:
* 使用 [Issues](https://github.com/justjavac/free-programming-books-zh_CN/issues) 以及 Pull Request
* 发邮箱给我
* 来 [SegmentFault](http://segmentfault.com/q/1010000000329895) 交流
**注**:看到有人 fork 此 repository,其实如果觉得有帮助,可以 star 或者 watch,
如果 fork 到你的 repositories 下则不能保证你的 repo 是最新的,除非是主动定期的 pull。
* star 的作用是收藏,目的是方便以后查找。
* watch 的作用是关注,目的是等我更新的时候,你可以收到通知。
* fork 的作用是参与,目的是你增加新的内容,然后 Pull Request,我会考虑把你的修改和我原来的内容合并。
请选择合理的方式。(上面的内容是写给一些 fork 狂的,很多开发者喜欢 fork 一些 linux 内核,jquery之类的东东,其实这些东东完全没有必要 fork)
## 目录
* [语言无关类](#语言无关类)
* [WEB服务器](#web服务器)
* [版本控制](#版本控制)
* [NoSQL](#nosql)
* [MySQL](#mysql)
* [项目相关](#项目相关)
* [Web](#web)
* [语言相关类](#语言相关类)
* [C/C++](#cc)
* [Dart](#dart)
* [java](#java)
* [javascript](#javascript)
* [PHP](#php)
* [Python](#python)
* [Go](#go)
* [读书笔记及其它](#读书笔记及其它)
## 语言无关类
### WEB服务器
* [Nginx开发从入门到精通](http://tengine.taobao.org/book/index.html) (淘宝出品)
### 版本控制
* [git - 简易指南](http://rogerdudler.github.io/git-guide/index.zh.html) (译)
* [Git 参考手册](http://gitref.justjavac.com) (译)
* [Pro Git](http://git-scm.com/book/zh) (译)
### NoSQL
* [NoSQL数据库笔谈](http://www.yankay.com/wp-content/NoSql_Database_Note.html) ([PDF](http://yankaycom-wordpress.stor.sinaapp.com/uploads/2012/12/NoSQL%E6%95%B0%E6%8D%AE%E5%BA%93%E7%AC%94%E8%B0%88v2.pdf))
* [Redis 命令参考](http://www.redisdoc.com/en/latest/) (译)
* [The Little MongoDB Book](https://github.com/justinyhuang/the-little-mongodb-book-cn/blob/master/mongodb.md) (译)
* [The Little Redis Book](https://github.com/JasonLai256/the-little-redis-book/blob/master/cn/redis.md) (译)
### MySQL
* [MySQL索引背后的数据结构及算法原理](http://www.cnblogs.com/leoo2sk/archive/2011/07/10/mysql-index.html)
### 项目相关
* [持续集成(第二版)](http://article.yeeyan.org/view/2251/94882) (译言网)
### Web
* [关于浏览器和网络的 20 项须知](http://www.20thingsilearned.com/zh-CN/home) (译)
## 语言相关类
### C/C++
* [C++ 并发编程指南](https://github.com/forhappy/A-Detailed-Cplusplus-Concurrency-Tutorial) ([@傅海平ICT](http://weibo.com/1702076100))
* [Linux C编程一站式学习](http://learn.akae.cn/media/index.html) (宋劲杉, 北京亚嵌教育研究中心)
* [CGDB中文手册](https://github.com/leeyiw/cgdb-manual-in-chinese) (译)
### Dart
* [Dart 语言导览](http://dart.lidian.info/wiki/Language_Tour) (译)
### java
* 使用 Eclipse 和 Java SE 6 创建独立 Web Services 应用程序
* [第 1 部分: Web Services 服务端应用程序](http://www.ibm.com/developerworks/cn/education/webservices/ws-eclipse-javase1/index.html)
* [第 2 部分: Web 服务客户端应用程序](http://www.ibm.com/developerworks/cn/webservices/tutorials/ws-jse/index.html)
### javascript
* [Google JavaScript 代码风格指南](http://chajn.org/jsguide/javascriptguide.html) (译)
* [Airbnb JavaScript 规范](https://github.com/adamlu/javascript-style-guide) (译)
* [javascript 的 12 个怪癖](https://github.com/justjavac/12-javascript-quirks) (译)
* [JavaScript 秘密花园](http://bonsaiden.github.io/JavaScript-Garden/zh/) (译)
* [JavaScript核心概念及实践](http://icodeit.org/jsccp/) (PDF) (此书已由人民邮电出版社出版发行,但作者依然免费提供PDF版本,希望开发者们去购买,支持作者)
* [命名函数表达式探秘](http://justjavac.com/named-function-expressions-demystified.html) (注:原文由[为之漫笔](http://www.cn-cuckoo.com)翻译,原始地址无法打开,所以此处地址为我博客上的备份)
* [学用 JavaScript 设计模式](http://www.oschina.net/translate/learning-javascript-design-patterns) (开源中国)
* [Node入门](http://www.nodebeginner.org/index-zh-cn.html) (译)
* [Nodejs Wiki Book](https://github.com/nodejs-tw/nodejs-wiki-book) (繁体中文)
* [backbone.js入门教程](http://www.the5fire.com/backbone-js-tutorials-pdf-download.html) (PDF)
* [Backbone.js入门教程第二版](https://github.com/the5fire/backbonejs-learning-note) (译)
* [Developing Backbone.js Applications(中文版)](http://feliving.github.io/developing-backbone-applications)
* [AngularJS中译本](https://github.com/basestyle/angularjs-cn) (译)
* [zepto 简明中文手册](http://www.360weboy.com/handbook/zepto/index.html) (译)
### PHP
* [PHP调试技术手册](http://www.laruence.com/2010/06/21/1608.html)(PDF)
* [PHP之道](https://github.com/wulijun/php-the-right-way) (译)
* [PHP 最佳实践](https://github.com/justjavac/PHP-Best-Practices-zh_CN) (译)
* [深入理解PHP内核](https://github.com/reeze/tipi)
* [PHP扩展开发及内核应用](http://www.walu.cc/phpbook/)
* [CodeIgniter 用户指南](http://codeigniter.org.cn/user_guide/index.html)
* [Laravel4 中文文档](http://www.golaravel.com/docs/)
### Python
* [简明Python教程](http://woodpecker.org.cn/abyteofpython_cn/chinese/) (译)
* [Python的神奇方法指南](http://article.yeeyan.org/view/311527/287706) (译)
* [Django 文档中文版](https://django-document-cn.readthedocs.org/en/latest/) (译)
* [Django 最佳实践](https://github.com/brantyoung/zh-django-best-practices) (译)
* [web.py 0.3 新手指南](http://webpy.org/tutorial3.zh-cn) (译)
* [Web.py Cookbook 简体中文版](http://webpy.org/cookbook/index.zh-cn) (译)
* [Symfony2中文文档](http://symfony-docs-chs.readthedocs.org/en/latest/) (未译完)
### Go
* [Go编程基础](https://github.com/Unknwon/go-fundamental-programming)
* [Go入门指南](https://github.com/Unknwon/the-way-to-go_ZH_CN)
* [学习Go语言](http://mikespook.com/learning-go/) (译 [PDF](http://xxiyy.qiniudn.com/%E5%AD%A6%E4%B9%A0%20Go%20%E8%AF%AD%E8%A8%80\(Golang\).pdf?download))
* [Go Web 编程](https://github.com/astaxie/build-web-application-with-golang) (此书已经出版,希望开发者们去购买,支持作者的创作)
* [Go实战开发](https://github.com/astaxie/Go-in-Action) (当我收录此项目时,作者已经写完第三章,如果读完前面章节觉得有帮助,可以给作者[捐赠](https://me.alipay.com/astaxie),以鼓励作者的继续创作)
* [Network programming with Go 中文翻译版本](https://github.com/astaxie/NPWG_zh) (译)
### LISP
* [ANSI Common Lisp 中文翻譯版](http://acl.readthedocs.org/en/latest/) (译)
### 读书笔记及其它
* [编译原理(紫龙书)中文第2版习题答案](https://github.com/fool2fish/dragon-book-exercise-answers)
* [把《编程珠玑》读薄](http://hawstein.com/posts/make-thiner-programming-pearls.html)