Go git memo Merge conflicts in go.sum Configure git to automatically handle merge conflicts in go.sum
Go memo Setup a (modern) Go development environment Don’t make it more complicated than it needs to be.
Go dependencies Python OVHcloud Go dependency management for Python developers How to manage dependencies on a Go project, compared to the Python ecosystem? How is the Go toolchain superior to Python in this regard?
Go fatcontext golangci-lint performance I wrote a linter! Creating a linter in Go is surprisingly easy! I wrote one and integrated it with golangci-lint to diagnose "fat contexts". This post documents the process.
Go dependencies Go dependencies and binary size How to prevent your app binary from getting bloated by unused dependencies? How to design your library so it doesn't happen to your users?
Go performance fatcontext OVHcloud Context-induced performance bottleneck in Go Misused go contexts can lead to severe performance issues.
Go HTTP Unmarshal JSON from HTTP request in Go Use json.Unmarshal instead of json.Decoder, or a thin HTTP client library.
Go Gin HTTP OVHcloud Gin Method Not Allowed By default gin returns a 404 for an incorrect HTTP verb sent to a handled path. This can be fixed.