Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binarymist/learning-go
https://github.com/binarymist/learning-go
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/binarymist/learning-go
- Owner: binarymist
- Created: 2024-01-06T03:13:53.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-06T07:07:12.000Z (10 months ago)
- Last Synced: 2024-06-20T22:10:47.646Z (5 months ago)
- Language: Go
- Size: 1.86 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[set-up Visual Studio Code](https://learn.microsoft.com/en-us/azure/developer/go/configure-visual-studio-code)
[set-up go Dockerfile](https://stackoverflow.com/questions/66894200/error-message-go-go-mod-file-not-found-in-current-directory-or-any-parent-dire)
Use the [go playground](https://go.dev/play/)
Youtube - [Learn Go in 7 minutes](https://www.youtube.com/watch?v=45oXTpoJ5-I)
[Goroutines by example](https://gobyexample.com/goroutines)
[Channels by example](https://gobyexample.com/channels)[Learning Go](https://go.dev/learn/)
[Official Go Docs](https://go.dev/doc/)
* Tutorial: Getting started
* Tutorial: Create a module: Code in ./1_go.dev_doc_tutorial_create-a-module
* Tutorial: Getting started with multi-module workspaces: Code in ./2_go.dev_doc_tutorial_multi-module-workspaces
* Tutorial: Developing a RESTful API with Go and Gin: Code in ./3_go.dev_doc_tutorial_restful-api-with-go-and-gin
* Tutorial: Getting started with generics: Code in ./4_go.dev_doc_tutorial_generics
* Tutorial: Getting started with fuzzing: Code in ./5_go.dev_doc_tutorial_fuzzing# Resources I went through in order, some concurrently
[Effective Go](https://go.dev/doc/effective_go)
[Code Review Comments](https://go.dev/wiki/CodeReviewComments)
[The Language Specification](https://go.dev/ref/spec)
[Go Tour](https://go.dev/tour/)
Learning Go: An Idiomatic Approach to Real-World Go Programming
Another edition is expected out in 2024
* ([source](https://github.com/learning-go-book))
* [My notes](LearningGo-AnIdiomaticApproachToRealWorldGoProgramming/README.md)Review of the best Go books for 2023:
* https://www.reddit.com/r/golang/comments/11hd310/what_would_be_the_best_golang_book_to_read_in/
* https://boldlygo.tech/posts/2023-01-30-review-learning-go/
* https://boldlygo.tech/posts/2023-02-24-best-book-to-learn-go-in-2023/"The Go Programming Language"
* What go is and has according to the Preface:
* Apparently Go is a high-level language, but it has basically no functional programming features
* Garbage collection
* A package system
* First-class functions
* lexical scope
* A system call interface
* Immutable strings in which text is generally encoded in UTF-8
* No implicit numeric conversions
* No constructors or destructors
* No operator overloading
* No default parameter values
* No inheritance
* No generics (Although these are added in 1.18)
* No exceptions
* No macros
* No function annotations
* No thread-local storageSome chapters refer to exercises in previous chapters, and expect you to build on them.
So you can't just read each chapter expecting it to be self contained.
Some of the exercises such as creating an FTP server in Chapter 8 requires a lot of background knowledge.
If you don't work on an FTP server on a daily basis, this exercise is likely to take you weeks.
You'll learn all about FTP and little about Go. This is a side-track from learning Go, and a wast of time unless you want to learn all about FTP rather than Go.I started going through chapter "8. Goroutines and Channels" after reading chapter "10. Concurrency in Go" of "Learning Go: An Idiomatic Approach to Real-World Go Programming" and got up to "8.6. Example: Concurrent Web Crawler", then realised that I couldn't go any further without going back to Chapter 5, which I hadn't been through.
100 Go Mistakes and How to Avoid Them
* https://github.com/teivah/100-go-mistakes
* https://100go.co/# Useful Resources
* [Standard Library of Go Packages](https://pkg.go.dev/std)
* [Go Wiki](https://go.dev/wiki/)
* [Go blog](https://go.dev/blog/)## Generics
* Read [Go by Example: Generics](https://gobyexample.com/generics) in conjunction with the "Learn Go in 7 minutes" video above
## Functional Go
* [Functional Go](https://medium.com/@geisonfgfg/functional-go-bc116f4c96a4)
## Constants
* [Constants](https://go.dev/tour/basics/15)
* [How To Use Variables and Constants in Go](https://www.digitalocean.com/community/tutorials/how-to-use-variables-and-constants-in-go)There are boolean constants, rune constants, integer constants, floating-point constants, complex constants, and string constants. Rune, integer, floating-point, and complex constants are collectively called numeric constants. [as per spec](https://go.dev/ref/spec#Constants).
That means Arrays, Slices, Maps, Structs, etc [can't be made constant](https://blog.boot.dev/clean-code/constants-in-go-vs-javascript-and-when-to-use-them/#constants-in-go), but there is a [work-around](https://blog.boot.dev/golang/golang-constant-maps-slices/) using initialisation functions.# Books
* Learning Functional Programming in Go
* Functional Programming in Golang (to be released on 2023-04-11), but it's Pakt, so based on experience with Pakt, probably not much good
* Humans are very good at measuring when we have something to measure against. [Go for JavaScript Developers](http://www.pazams.com/Go-for-Javascript-Developers/) has comparisons that are quite helpful for those of us that have spent a long time in JavaScript
* [wiki books](https://go.dev/wiki/Books)