Andrew Gerrand | 5bc444d | 2014-12-10 11:35:11 +1100 | [diff] [blame] | 1 | In addition to the resources available [at golang.org](http://golang.org/doc/#learning) there are a range of community-driven initiatives: |
| 2 | |
Jason Buberel | 6e44ada | 2015-09-21 18:00:26 -0700 | [diff] [blame] | 3 | * [The Little Go Book](http://openmymind.net/The-Little-Go-Book/) |
Jason Buberel | ca37ce2 | 2015-10-09 11:17:28 -0700 | [diff] [blame] | 4 | * [Exercism.io - Go](http://exercism.io/languages/go) - Online code exercises for Go for practice and mentorship. |
Jason Buberel | 3b6f94a | 2015-09-19 11:36:47 -0700 | [diff] [blame] | 5 | * [Learn Go in an Hour - Video](https://www.youtube.com/watch?v=CF9S4QZuV30) _2015-02-15_ |
Jason Buberel | 6c3bd9e | 2015-08-23 11:04:43 -0700 | [diff] [blame] | 6 | * [Learning to Program in Go](https://www.youtube.com/playlist?list=PLei96ZX_m9sVSEXWwZi8uwd2vqCpEm4m6), a multi-part video training class. |
| 7 | * [Pluralsight Classes for Go](http://www.pluralsight.com/tag/golang) - A growing collection of (paid) online classes. |
| 8 | * [Ardan Labs Training](https://www.ardanlabs.com/) - Commercial, live instruction for Go programming. |
Jason Buberel | a60de26 | 2015-09-02 08:12:53 -0700 | [diff] [blame] | 9 | * [O'Reilly Go Fundamentals](http://shop.oreilly.com/category/learning-path/go-fundamentals.do) - Video learning path for Go programming. |
Sameer Ajmani | cdf5355 | 2015-01-09 13:51:20 -0500 | [diff] [blame] | 10 | * [Go By Example](http://gobyexample.com/) provides a series of annotated code snippets. |
Jason Buberel | 7e6cbc3 | 2015-08-30 08:32:46 -0700 | [diff] [blame] | 11 | * [Learn Go in Y minutes](http://learnxinyminutes.com/docs/go/) is a top-to-bottom walk-through of the language. |
Jason Buberel | ca37ce2 | 2015-10-09 11:17:28 -0700 | [diff] [blame] | 12 | * [Workshop-Go](https://github.com/sendwithus/workshop-go) - Startup Slam Go Workshop - examples and slides. |
| 13 | * [Go Fragments](http://www.gofragments.net/) - A collection of annotated Go code examples. |
Jason Buberel | 88fe84a | 2015-08-30 12:53:00 -0700 | [diff] [blame] | 14 | * [50 Shades of Go: Traps, Gotchas, Common Mistakes for New Golang Devs](http://devs.cloudimmunity.com/gotchas-and-common-mistakes-in-go-golang/index.html) |
Framework Training | 82cb419 | 2015-02-19 12:27:03 +0000 | [diff] [blame] | 15 | * [Free Go Language Workshop](https://www.frameworktraining.co.uk/go-language-free-training-workshop/) Framework Training is running regular free BYOD workshops in London, UK |
Jason Buberel | 6c3bd9e | 2015-08-23 11:04:43 -0700 | [diff] [blame] | 16 | * [GoingGo.net](http://www.goinggo.net/) - A collection of videos and articles for learning Go. |
| 17 | * [Golang Tutorials](http://golangtutorials.blogspot.com/2011/05/table-of-contents.html) - A free online class. |
Shavkat Izbasar | 28346d5 | 2016-09-11 22:49:38 +0500 | [diff] [blame] | 18 | * [Golang for beginners](http://golanguz.blogspot.com) - Tons of go code for beginners. |
Anand Chitipothu | 9333770 | 2016-05-25 14:05:38 +0530 | [diff] [blame] | 19 | * Rob Pike's 2011 three day course - [Day 1](http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay1.pdf), [Day 2](http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay2.pdf), [Day 3](http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay3.pdf) (*links are broken*, use the archived links from the wayback machine. [Day 1][wbday1], [Day 2][wbday2], [Day 3][wbday3]) |
Jason Buberel | 6e44ada | 2015-09-21 18:00:26 -0700 | [diff] [blame] | 20 | * [The Go Bridge Foundry](https://github.com/gobridge) - A member of the [Bridge Foundry](http://bridgefoundry.org/) family, offering a complete set of free Go training materials with the goal of bringing Go to under-served communities. |
Jason Buberel | 6c3bd9e | 2015-08-23 11:04:43 -0700 | [diff] [blame] | 21 | |
Anand Chitipothu | 9333770 | 2016-05-25 14:05:38 +0530 | [diff] [blame] | 22 | [wbday1]: http://web.archive.org/web/20160305024536/http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay1.pdf |
| 23 | [wbday2]: http://web.archive.org/web/20160305081012/http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay2.pdf |
| 24 | [wbday3]: http://web.archive.org/web/20160305075151/http://go.googlecode.com/hg-history/release-branch.r60/doc/GoCourseDay3.pdf |
| 25 | |
Sameer Ajmani | 0588be6 | 2015-01-09 14:07:32 -0500 | [diff] [blame] | 26 | Learning resources for specific topics: |
Sameer Ajmani | 01c194b | 2015-01-12 11:22:43 -0500 | [diff] [blame] | 27 | * [LearnConcurrency](LearnConcurrency) outlines a course of study of Go's concurrency model and patterns. |
| 28 | * [LearnErrorHandling](LearnErrorHandling) links to resources about error handling in Go. |
| 29 | * [LearnTesting](LearnTesting) links to resources about testing in Go. |
| 30 | * [LearnServerProgramming](LearnServerProgramming) links to resources about server programming in Go. |
Jason Green | 9011f90 | 2016-01-06 19:13:54 +0100 | [diff] [blame] | 31 | |
| 32 | Further reading: |
| 33 | * [Newspaper](http://www.newspaper.io) is a topic based newsfeed for slack. Built on Go |