free-programming-interactive-tutorials-en.md 10.8 KB
Newer Older
1
### Index
2

M
Momozor 已提交
3
* [Ada](#ada)
4
* [Android](#android)
5 6 7
* [Bash](#bash)
* [C](#c)
* [C#](#c-sharp)
S
Seth 已提交
8
* [C++](#cpp)
9
* [Clojure](#clojure)
10
* [Cloud Computing](#cloud-computing)
11
* [CoffeeScript](#coffeescript)
12
* [Dart](#dart)
13 14
* [Erlang](#erlang)
* [Git](#git)
15
* [GLSL](#glsl)
16 17 18
* [Go](#go)
* [Haskell](#haskell)
* [HTML / CSS](#html--css)
19
  * [Bootstrap](#bootstrap)
20
* [Java](#java)
21
* [JavaScript](#javascript)
22
  * [AngularJS](#angularjs)
23 24
  * [jQuery](#jquery)
  * [React](#react)
25
* [Kotlin](#kotlin)
26
* [Language Agnostic](#language-agnostic)
27
  * [Operating Systems](#operating-systems)
28
* [LaTeX](#latex)
29 30 31 32 33 34 35
* [Lisp](#lisp)
* [MATLAB](#matlab)
* [Node](#node)
* [NoSQL](#nosql)
* [Objective-C](#objective-c)
* [Ocaml](#ocaml)
* [PHP](#php)
36
* [PostgreSQL](#postgresql)
37 38
* [Python](#python)
* [Ruby](#ruby)
39
* [Rust](#rust)
40
* [Scala](#scala)
41
* [Selenium](#selenium)
A
Asad Dhamani 已提交
42
* [SQL](#sql)
43 44 45
* [Vim](#vim)


M
Momozor 已提交
46 47 48 49 50
### Ada

* [Introduction to Ada](https://learn.adacore.com/courses/intro-to-ada/index.html)


51 52
### Android

53
* [Android Tutorial](https://www.tutlane.com/tutorial/android) - tutlane
54 55 56
* [Javatpoint Android Tutorial](https://www.javatpoint.com/android-tutorial)


C
Christoph Uschkrat 已提交
57
### Bash
58

59
* [Help messages will explain everything](https://explainshell.com)
60 61
* [Learn Shell Programming](http://www.learnshell.org)

62

C
Christoph Uschkrat 已提交
63
### C
64

V
Victor Felder 已提交
65
* [Learn C](http://www.learn-c.org)
66

V
Victor Felder 已提交
67

68
### C Sharp
69

70
* [C# Tutorial](https://www.tutlane.com/tutorial/csharp) - tutlane
71
* [C# Tutorial](https://www.w3schools.com/cs) - W3Schools
72
* [Codeasy](https://codeasy.net/course/csharp_elementary)
V
Victor Felder 已提交
73
* [Learn C#](http://www.learncs.org)
74
* [Learn C#](https://www.codecademy.com/learn/learn-c-sharp) - Codecademy
75

76

S
Seth 已提交
77
<h3 id="cpp">C++</h3>
78

79
* [C++ Tutorial](https://www.w3schools.com/cpp) - W3Schools
S
SungRim Huh 已提交
80 81 82
* [CppKoans](https://github.com/torbjoernk/CppKoans)


C
Christoph Uschkrat 已提交
83
### Clojure
84

85
* [4Clojure - Koans](http://www.4clojure.com)
V
Victor Felder 已提交
86 87
* [Clojure Koans](http://clojurekoans.com)
* [ClojureScript Koans](http://clojurescriptkoans.com)
C
Craig Davison 已提交
88
* [Try Clojure](http://www.tryclj.com)
89 90


91
### Cloud Computing
92 93 94 95 96 97 98 99

* [AWS API Gateway](https://run.qwiklabs.com/focuses/269?catalog_rank=%7B%22rank%22%3A3%2C%22num_filters%22%3A1%2C%22has_search%22%3Atrue%7D&parent=catalog&search_id=3605949) - *registration required*
* [AWS Identity and Access Management (IAM)](https://run.qwiklabs.com/focuses/7782?catalog_rank=%7B%22rank%22%3A6%2C%22num_filters%22%3A1%2C%22has_search%22%3Atrue%7D&parent=catalog&search_id=3605942) - *registration required*
* [AWS Lambda](https://run.qwiklabs.com/focuses/6431?catalog_rank=%7B%22rank%22%3A2%2C%22num_filters%22%3A1%2C%22has_search%22%3Atrue%7D&parent=catalog&search_id=3605949) - *registration required*
* [AWS Simple Storage Service (S3)](https://run.qwiklabs.com/focuses/7860?catalog_rank=%7B%22rank%22%3A3%2C%22num_filters%22%3A0%2C%22has_search%22%3Atrue%7D&parent=catalog&search_id=3597563) - *registration required*
* [Google Cloud Platform](https://cloud.google.com/training/free-labs/)


C
Christoph Uschkrat 已提交
100
### CoffeeScript
101

E
elrrrrrrr 已提交
102
* [Coffeescript Style Guide](https://github.com/polarmobile/coffeescript-style-guide/blob/master/README.md)
103 104
* [Smooth CoffeeScript, Interactive Edition](http://autotelicum.github.io/Smooth-CoffeeScript/interactive/interactive-coffeescript.html)

105

106 107 108 109 110
### Dart

* [Dart Official Codelabs](https://dart.dev/codelabs)


C
Christoph Uschkrat 已提交
111
### Erlang
112

V
Victor Felder 已提交
113
* [Try Erlang](http://www.tryerlang.org)
114

115

C
Christoph Uschkrat 已提交
116
### Git
117

118 119
* [git-game](https://github.com/git-game/git-game)
* [git-game-v2](https://github.com/git-game/git-game-v2)
120
* [Githug](https://github.com/Gazler/githug) (Tutorial in shell)
121
* [Learn Git Branching](https://learngitbranching.js.org)
R
Renan Martins 已提交
122
* [Learn Git with Bitbucket Cloud](https://www.atlassian.com/git/tutorials/learn-git-with-bitbucket-cloud)
C
Chris Ben 已提交
123
* [Try Git](http://try.github.io)
124 125


126 127 128 129 130
### GLSL

* [The Book of Shaders](https://thebookofshaders.com)


C
Christoph Uschkrat 已提交
131
### Go
132

C
Chris Ben 已提交
133
* [Go Koans](https://github.com/cdarwin/go-koans)
134
* [Start using Go](https://docs.microsoft.com/en-us/learn/paths/go-first-steps/) - Microsoft
C
Craig Davison 已提交
135
* [The Go Tutorial](http://tour.golang.org)
136

137

C
Christoph Uschkrat 已提交
138
### Haskell
139

V
Victor Felder 已提交
140
* [Try Haskell!](http://tryhaskell.org)
141

142

143
### HTML / CSS
144

145
* [CSS Diner](http://flukeout.github.io)
146
* [CSS Tutorial](https://www.w3schools.com/css/) - W3Schools
147
* [Flex Box Adventure](https://codingfantasy.com/games/flexboxadventure) - Nick Bull
148
* [Flexbox Defense](http://flexboxdefense.com)
149
* [Flexbox Froggy](http://flexboxfroggy.com)
150
* [FreeCodeCamp: Responsive Web Design Course](https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/)
151
* [Grid Attack](https://codingfantasy.com/games/css-grid-attack) - Nick Bull
152
* [Grid Garden](https://cssgridgarden.com)
153
* [HTML Tutorial](https://www.w3schools.com/html/) - W3Schools
154
* [Knights of the Flexbox Table](https://knightsoftheflexboxtable.com)
C
Craig Davison 已提交
155
* [Learn by doing beginner projects](https://dash.generalassemb.ly)
C
Craig Davison 已提交
156
* [Learn HTML & CSS interactively](https://www.codecademy.com/learn/web)
157
* [Prototyping a professional website](https://www.codecademy.com/learn/make-a-website)
158 159


160 161
#### Bootstrap

162
* [Bootstrap Tutorial](https://www.tutlane.com/tutorial/bootstrap) - tutlane
163 164 165
* [Front End Libraries: Bootstrap](https://www.freecodecamp.org/learn/front-end-libraries/bootstrap)


C
Christoph Uschkrat 已提交
166
### Java
167

V
Victor Felder 已提交
168
* [CodingBat code practice](http://codingbat.com/java)
169
* [Java at Codecademy](https://www.codecademy.com/courses/learn-java)
170
* [Java Tutorial](https://www.w3schools.com/java) - W3Schools
V
Victor Felder 已提交
171
* [Learn Java](http://www.learnjavaonline.org)
172
* [Learneroo Java tutorial](https://www.learneroo.com/modules/11)
173

174

C
Christoph Uschkrat 已提交
175
### JavaScript
176

177
* [ABC of JavaScript : An Interactive JavaScript Tutorial](http://www.openjs.com/tutorials/basic_tutorial/)
C
Craig Davison 已提交
178
* [Codecademy jquery track](https://www.codecademy.com/learn/jquery)
179
* [ES6 Interactive Guide](http://stack.formidable.com/es6-interactive-guide/#/)
S
Saritha 已提交
180
* [Functional Programming in Javascript](https://github.com/ReactiveX/learnrx)
181
* [JavaScript Algorithms and Data Structures Certification](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript)
C
Craig Davison 已提交
182
* [Javascript interactive tutorial on CodeCademy](https://www.codecademy.com/learn/javascript)
183
* [JavaScript interactive tutorial on CoderMania](http://www.codermania.com/javascript/lesson/1a/hello-world)
184
* [JavaScript Tutorial](https://www.w3schools.com/js) - W3Schools
V
Vikas Parashar 已提交
185
* [Javascripting](https://github.com/sethvincent/javascripting)
V
Victor Felder 已提交
186
* [Learn JavaScript](http://www.learn-js.org)
187
* [Learn knockout.js](http://learn.knockoutjs.com)
188
* [Learn to Code for Free – Grasshopper](https://grasshopper.app)
189
* [Learning Advanced JavaScript](http://ejohn.org/apps/learn/)
V
Victor Felder 已提交
190
* [Try jQuery](http://try.jquery.com)
S
Saritha 已提交
191

V
Victor Felder 已提交
192

193
#### AngularJS
S
sstt011 已提交
194

195 196
* [AngularJS - Step by Logical Step](http://nicholasjohnson.com/angular-book/) - Nicholas Johnson
* [AngularJS Basics](http://www.angularjsbook.com) - Chris Smith
197
* [AngularJS Tutorial](https://www.tutlane.com/tutorial/angularjs) - tutlane
198
* [AngularJS Tutorial](https://www.w3schools.com/angular/) - W3Schools
S
sstt011 已提交
199 200 201 202
* [egghead.io: Learn AngularJS with Tutorial Videos & Training](https://egghead.io)
* [Learn AngularJS with free interactive lessons](http://www.learn-angular.org)


203 204 205 206 207 208 209 210
#### jQuery

* [Front End Libraries: jQuery](https://www.freecodecamp.org/learn/front-end-libraries/jquery)


#### React

* [Front End Libraries: React](https://www.freecodecamp.org/learn/front-end-libraries/react)
211
* [React Tutorial](https://react-tutorial.app)
212 213


214 215 216 217 218
### Kotlin

* [Kotlin tutorial](https://kotlinlang.org/docs/tutorials/)


219
### Language Agnostic
220

221
* [CodeCombat](http://codecombat.com) - Python, JavaScript, CoffeeScript, Clojure, Lua, Io
222
* [Codility](https://codility.com/programmers/)
223
* [Introduction to the Coding Interview Prep Algorithms](https://www.freecodecamp.org/learn/coding-interview-prep/algorithms) (freeCodeCamp)
V
Victor Felder 已提交
224
* [Python Tutor](http://pythontutor.com) - Python, Java, JavaScript, TypeScript, Ruby, C, C++
A
Alexey Gorelov 已提交
225
* [The Fullstack Tutorial for GraphQL](https://www.howtographql.com)
226 227


228 229 230 231 232
#### Operating systems

* [Learning operating system development using Linux kernel and Raspberry Pi](https://github.com/s-matyukevich/raspberry-pi-os) - Sergey Matyukevich (:construction: *in process*)


233 234 235 236 237
### LaTeX

* [Learn LaTeX in 30 minutes](https://www.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes)


C
Christoph Uschkrat 已提交
238
### Lisp
239

240 241 242
* [Lisp Koans](https://github.com/google/lisp-koans)


C
Christoph Uschkrat 已提交
243
### MATLAB
244

245 246 247
* [Interactive Tutorials for MATLAB, Simulink, Signal Processing, Controls, and Computational Mathematics](http://www.mathworks.com/tutorials)


C
Christoph Uschkrat 已提交
248
### Node
249

V
Victor Felder 已提交
250
* [Node School](http://nodeschool.io)
251
* [Node.js Tutorial](https://www.tutlane.com/tutorial/nodejs) - tutlane
252
* [Node.js Tutorial](https://www.w3schools.com/nodejs) - W3Schools
253 254


C
Christoph Uschkrat 已提交
255
### NoSQL
256

257
* [MongoDB Koans](https://github.com/chicagoruby/MongoDB_Koans)
V
Victor Felder 已提交
258
* [Try Redis](http://try.redis.io)
259

260

C
Christoph Uschkrat 已提交
261
### Objective-C
262

263
* [Try Objective-C](http://tryobjectivec.codeschool.com)
264

265

C
Christoph Uschkrat 已提交
266
### Ocaml
267

V
Victor Felder 已提交
268
* [Try Ocaml](http://try.ocamlpro.com)
269

270

C
Christoph Uschkrat 已提交
271
### PHP
272

C
Craig Davison 已提交
273
* [CodeCademy PHP](https://www.codecademy.com/learn/php)
V
Victor Felder 已提交
274
* [Learn PHP](http://www.learn-php.org)
275
* [PHP tutorial](https://www.w3schools.com/php) - W3Schools
276

277

278 279 280 281 282
### PostgreSQL

* [PostgreSQL Tutorial](https://www.postgresqltutorial.com)


C
Christoph Uschkrat 已提交
283
### Python
284

C
Craig Davison 已提交
285
* [Codecademy Python course](https://www.codecademy.com/learn/python)
286
* [How to Think Like a Computer Scientist: Learning with Python, Interactive Edition](http://interactivepython.org/courselib/static/thinkcspy/index.html)
V
Victor Felder 已提交
287
* [Learn Python](http://www.learnpython.org)
M
Meenakshi Agarwal 已提交
288
* [Learn Python Step by Step](http://www.techbeamers.com/python-tutorial-step-by-step)
289
* [Python for Everybody - Interactive](https://runestone.academy/runestone/books/published/py4e-int/index.html) - Barbara Ericson
290
* [Python Koans](https://github.com/gregmalcolm/python_koans)
G
Gintautas Švedas 已提交
291
* [Python Pandas Tutorial: A Complete Introduction for Beginners](https://www.learndatasci.com/tutorials/python-pandas-tutorial-complete-introduction-for-beginners/) - George McIntire, Brendan Martin, Lauren Washington
A
Anuj Singh 已提交
292
* [Python Programming Language](https://www.geeksforgeeks.org/python-programming-language/) - GeeksforGeeks
293
* [Python Tutorial](https://www.tutlane.com/tutorial/python) - tutlane
294
* [Python Tutorial](https://www.w3schools.com/python) - W3Schools
295

296

C
Christoph Uschkrat 已提交
297
### Ruby
298

C
Craig Davison 已提交
299
* [CodeCademy Ruby](https://www.codecademy.com/learn/ruby)
V
Victor Felder 已提交
300 301 302
* [Ruby Koans](http://www.rubykoans.com)
* [The Odin Project](http://www.theodinproject.com)
* [Try Ruby](http://tryruby.org)
A
Alexander Fefelov 已提交
303

304

305 306 307 308 309
### Rust

* [Rustlings](https://github.com/rust-lang/rustlings)


C
Christoph Uschkrat 已提交
310
### Scala
311

312
* [A Tour of Scala - an interactive scala tutorial](https://scalatutorials.com/tour/)
313
* [Scala Exercises](https://www.scala-exercises.org)
314

315

M
Meenakshi Agarwal 已提交
316 317 318 319 320
### Selenium

* [Selenium Tutorial - Web Automation](http://www.techbeamers.com/selenium-webdriver-tutorial)


A
Asad Dhamani 已提交
321
### SQL
322

323
* [Intro to SQL: Querying and managing data](https://www.khanacademy.org/computing/computer-programming/sql) - Khan Academy
324
* [SQL at Codecademy](https://www.codecademy.com/courses/learn-sql)
325
* [SQL Server Tutorial](https://www.tutlane.com/tutorial/sql-server) - tutlane
326
* [SQL Tutorial](https://www.w3schools.com/sql) - W3Schools
V
Victor Felder 已提交
327
* [SQLBolt](http://sqlbolt.com)
A
Asad Dhamani 已提交
328 329


C
Christoph Uschkrat 已提交
330
### Vim
331

332
* [Interactive Vim Tutorial](http://www.openvim.com/tutorial.html)