Links to Learning Resources for Go
Go to file
jeff 1b03ea2f1b Update 'README.md' 2022-10-05 15:48:50 +00:00
Communicating Sequential Processes.pdf Upload files to '' 2020-04-02 13:25:26 +00:00
README.md Update 'README.md' 2022-10-05 15:48:50 +00:00
project_structure.md Update 'project_structure.md' 2022-09-26 17:47:31 +00:00

README.md

Starting off

  1. 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.
  2. The Go Playground: This is whats 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.
  3. Effective Go: I recommend this as your first read. It covers everything you need to know to start writing useful programs.
  4. 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.
  5. GoogleTechTalks - The Go Programming Language (YouTube): The video is old, but almost all the information in there is still accurate and useful.
  6. Install Go: This has instructions for all Operating Systems that Go supports to install and use Go.
  7. Use an IDE(Integrated Development Environment): You can write programs using Notepad if you want to, but as your programs get bigger, youll want to use an IDE. I recommend GoLand. Ive been using it for several years and Ive 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.

Twitter

Mailing Lists

Reddit

Projects to Follow

YouTube

Misc

Tools

  • JSON-to-Go - This tool will convert a piece of JSON to a Go struct. This functionality is a feauture in the GoLand IDE.

Find Libraries