free-programming-books-zh.md 4.9 KB
Newer Older
C
Christoph Uschkrat 已提交
1
### 目录
S
Sun Xiaobo 已提交
2 3 4 5 6 7 8
* [语言无关](#语言无关)
	* [在线教育](#在线教育)
	* [软件开发方法](#软件开发方法)
	* [操作系统](#操作系统)
	* [版本控制](#版本控制)
	* [数据库](#数据库)
* [Erlang](#erlang)
9 10 11
* [Golang](#golang)
* [Haskell](#haskell)
* [HTML / CSS](#html--css)
12
* [JavaScript](#javascript)
13
* [LaTeX](#latex)
J
Jinyang Zhou 已提交
14
* [LISP](#lisp)
15
* [Perl](#perl)
16
* [Python](#python)
S
Sun Xiaobo 已提交
17
* [R](#r)
18
* [Ruby](#ruby)
J
Jinyang Zhou 已提交
19
* [Scala](#scala)
S
Sun Xiaobo 已提交
20
* [Scheme](#scheme)
J
Jinyang Zhou 已提交
21
* [Shell](#shell)
S
Sun Xiaobo 已提交
22
* [Vim](#vim)
23
* [Visual Prolog](#visual-prolog)
24

25

S
Sun Xiaobo 已提交
26 27 28
### 语言无关

#### 在线教育
29 30
* [MIT OCW -- 麻省理工学院“开放式课程网页”](http://ocw.mit.edu/courses/translated-courses/simplified-chinese/)
* [Coursera](https://www.coursera.org/courses?orderby=upcoming&lngs=zh)
31
* [Udacity](https://www.udacity.com/)
32
* [xuetangX](https://www.xuetangx.com/)
V
vhf / victor felder 已提交
33
* [Codecademy](http://www.codecademy.com/?locale_code=zh)
34
* [CodeSchool](https://www.codeschool.com/)
S
Sun Xiaobo 已提交
35
* [TeamTreeHouse](http://teamtreehouse.com/)
36

37

S
Sun Xiaobo 已提交
38
#### 软件开发方法
J
Jinyang Zhou 已提交
39
* [硝烟中的 Scrum 和 XP](http://www.infoq.com/cn/minibooks/scrum-xp-from-the-trenches)
40
* [文章《Functional Programming For The Rest of Us》的中文翻译](https://github.com/justinyhuang/Functional-Programming-For-The-Rest-of-Us-Cn)
41

42

S
Sun Xiaobo 已提交
43
#### 操作系统
44
* [UNIX TOOLBOX](http://cb.vu/unixtoolbox_zh_CN.xhtml)
45

46

S
Sun Xiaobo 已提交
47
#### 版本控制
48
* [Pro Git](http://git-scm.com/book/zh)
J
Jinyang Zhou 已提交
49 50 51
* [Git magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/)
* [Git - 简易指南](http://rogerdudler.github.io/git-guide/index.zh.html)
* [Git 参考手册](http://gitref.justjavac.com/)
52
* [沉浸式学 Git](http://igit.linuxtoy.org/index.html)
53

54

S
Sun Xiaobo 已提交
55
#### 数据库
56 57
* [The Little MongoDB Book 中文版](https://github.com/justinyhuang/the-little-mongodb-book-cn)
* [Redis 设计与实现](http://www.redisbook.com)
J
João G. Packer 已提交
58

59

S
Sun Xiaobo 已提交
60 61 62 63
### Erlang
* [Erlang并发编程](https://github.com/liancheng/cpie-cn) (《Concurrent Programming in Erlang (Part I)》中文版)


64 65 66
### Golang
* [Go Web编程](https://github.com/astaxie/build-web-application-with-golang)
* [Go编程基础](https://github.com/Unknwon/go-fundamental-programming)
S
Sun Xiaobo 已提交
67 68
* [Go入门指南](https://github.com/Unknwon/the-way-to-go_ZH_CN) (《The Way to Go》中文版)
* [学习 Go 语言](https://github.com/mikespook/Learning-Go-zh-cn)
69 70 71 72 73 74 75 76 77 78 79 80


### Haskell
* [Real World Haskell 中文版](http://rwh.readthedocs.org/en/latest/)
* [Haskell 趣学指南](http://learnyouahaskell-zh-tw.csie.org/)


### HTML / CSS
* [学习CSS布局](http://zh.learnlayout.com/)


### Javascript
81
* [Javascript Garden](http://bonsaiden.github.io/JavaScript-Garden/zh/)
S
Sun Xiaobo 已提交
82
* [Javascript 原理](http://typeof.net/s/jsmech/)
83

84

85
### LaTeX
86
* [一份不太简短的 LaTeX2ε 介绍](http://ctan.org/pkg/lshort-zh-cn)
S
Sun Xiaobo 已提交
87 88
* [LaTeX 笔记](http://www.dralpha.com/zh/tech/tech.htm)
* [大家來學 LaTeX](http://web.math.isu.edu.tw/yeh/HowTo/HowToTex/latex123.pdf)
89

90

J
Jinyang Zhou 已提交
91 92 93
### LISP
* [ANSI Common Lisp 中文翻译版](http://acl.readthedocs.org/en/latest/)

94

95 96
### Perl
* [Master Perl Today](https://github.com/fayland/chinese-perl-book)
S
Sun Xiaobo 已提交
97
* [《Modern Perl》中文版](https://github.com/horus/modern_perl_book)
98

S
Sun Xiaobo 已提交
99

100 101 102
### Python
* [深入Python](http://woodpecker.org.cn/diveintopython/)
* [笨办法学 Python](http://sebug.net/paper/books/LearnPythonTheHardWay/)
S
Sun Xiaobo 已提交
103 104 105 106 107
* [简明 Python 教程](http://woodpecker.org.cn/abyteofpython_cn/chinese/) (《A Byte of Python》中文版)


### R
* [R 导论](http://cran.r-project.org/doc/contrib/Ding-R-intro_cn.pdf) (《An Introduction to R》中文版)
S
Sun Xiaobo 已提交
108
* [153分钟学会R ](http://cran.r-project.org/doc/contrib/Liu-FAQ.pdf)
S
Sun Xiaobo 已提交
109
* [《R for beginners》中文版](http://www.biosino.org/R/R-doc/files/R4beg_cn_2.0.pdf)
S
Sun Xiaobo 已提交
110
* [统计学与 R 读书笔记](http://cran.r-project.org/doc/contrib/Xu-Statistics_and_R.pdf)
S
Sun Xiaobo 已提交
111
* [用 R 构建 Shiny 应用程序](http://yanping.me/shiny-tutorial/) (《Building 'Shiny' Applications with R》中文版)
112 113 114 115 116 117 118


### Ruby
* [Ruby 风格指南](https://github.com/JuanitoFatas/ruby-style-guide/blob/master/README-zhCN.md)
* [Rails 风格指南](https://github.com/JuanitoFatas/rails-style-guide/blob/master/README-zhCN.md)
* [笨方法学 Ruby](http://lrthw.github.io/)
* [Ruby on Rails Tutorial 原书第 2 版](http://railstutorial-china.org/)
J
Jinyang Zhou 已提交
119

120

J
Jinyang Zhou 已提交
121
### Scala
122
* [Effective Scala](http://twitter.github.io/effectivescala/index-cn.html) - Marius Eriksen
J
Jinyang Zhou 已提交
123 124
* [Scala 课堂](http://twitter.github.io/scala_school/zh_cn/index.html) (Twitter的Scala中文教程)

125

S
Sun Xiaobo 已提交
126 127 128 129
### Scheme
* [Scheme入门教程](http://deathking.github.io/yast-cn/) (《Yet Another Scheme Tutorial》中文版)


J
Jinyang Zhou 已提交
130 131
### Shell
* [Shell 脚本编程30分钟入门](https://github.com/qinjx/30min_guides/blob/master/shell.md)
132

133

S
Sun Xiaobo 已提交
134
### Vim
S
Sun Xiaobo 已提交
135
* [大家來學VIM](http://www.study-area.org/tips/vim/index.html)
S
Sun Xiaobo 已提交
136 137


138 139 140
### Visual Prolog
* [Visual Prolog 7边练边学](http://wiki.visual-prolog.com/index.php?title=Visual_Prolog_for_Tyros_in_Chinese)
* [Visual Prolog 7初学指南](http://wiki.visual-prolog.com/index.php?title=A_Beginners_Guide_to_Visual_Prolog_in_Chinese)