Links to Learning Resources for Go
Communicating Sequential Processes.pdf | ||
README.md |
Starting off
- A Tour of Go: This is an interactive guide to learning some of the basics. You can code right in the web browser and see it work.
- The Go Playground: This is what’s used in A Tour of Go to code in the browser. In addition to coding in the browser, you can share the code. This is good for a couple things: a. Testing how something in the language works. b. Sharing code. This is the standard for passing along snippets of code. If you have any questions, create an example and then ask your question based on that.
- Effective Go: I recommend this as your first read. It covers everything you need to know to start writing useful programs.
- The Go Programming Language (Book): This covers almost all of the language. If you are still interested after Effective Go and playing around with some code in the Playground, give this a read.
- GoogleTechTalks - The Go Programming Language (YouTube): The video is old, but almost all the information in there is still accurate and useful.
- Install Go: This has instructions for all Operating Systems that Go supports to install and use Go.
- Use an IDE(Integrated Development Environment): You can write programs using Notepad if you want to, but as your programs get bigger, you’ll want to use an IDE. I recommend GoLand. I’ve been using it for several years and I’ve found it to be the most productive.
Keeping up
- Go Blog: The articles are not frequent, but are high quality.
- Twitter: The account tweets when there are new blog posts and other important info.
- GoLang Weekly Mailing List: They do most of the work for you on keeping up on the language.
Mailing Lists
Projects to Follow
YouTube
- The Go Programming Language
- Gopher Academy
- Russ Cox
- Brad Fitzpatrick
- GoogleTechTalks - The Go Programming Language
- Rob Pike - Simplicity is Complicated
- Rob Pike - 'Concurrency Is Not Parallelism'
- Rob Pike - Go Concurrency Patterns
- Rob Pike - Go Proverbs
- Rob Pike - The Design of the Go Assembler
- Keith Randall - Inside the Map Implementation
- Eben Freeman - Allocator Wrestling
- Bryan C. Mills - Rethinking Classical Concurrency Patterns
- Going Infinite, handling 1 millions websockets connections in Go / Eran Yanay
Misc
- Concurrency Visualization
- Go vs Nginx TLS Termination
- Practical Go by Dave Cheney
- Less is exponentially more
- Getting to Go: The Journey of Go's Garbage Collector
- Communicating Sequential Processes
- Code Review Comments
- Organizing Database Access
Tools
- JSON-to-Go - This tool will convert a piece of JSON to a Go struct