type Dec ¶| pkg.go.dev
It’s no secret that my taste in programming languages is very weird for a programming language enthusiast professional. Several of my last few posts are about Go, broadly regarded as the programming language equivalent of eating plain oatmeal for breakfast.| mcyoung.xyz
When Campfire - the first Once product - came out, a few of us at Ruby Zagreb pitched in to buy a copy. Prometheus had brought fire from Mount Olympus, and...| stanko.io
Go is one of the most popular server side programming languages created by Google. Go is a compiled language and it has a simple and concise syntax.| golangbot
« blog2025-02-01| lukasschwab.me
Most programming language ecosystems provide assert functions in their testing libraries but not Go's. Go's standard testing package follows a more direct and to-the-point approach.| henvic.dev
Learn how to use standard library interfaces to prevent sensitive data from leaking.| www.willem.dev
What is the difference between a slice of pointers and a slice of values? And when should you use one or the other? This article explains.| www.willem.dev
An introduction to arrays, slices and their relationship. Get a solid mental model by implementing your own slice.| www.willem.dev
Learn how to create and handle an error hierarchy| gosamples.dev
Learn how to pretty print HTTP request and response| gosamples.dev
Learn the differences between string concatenation methods| gosamples.dev
Learn how to find and print the address of a variable or pointer| gosamples.dev
Learn how to use iota keyword in constants declaration| gosamples.dev
Overview ¶| pkg.go.dev
Overview ¶| pkg.go.dev
Learn how to create an executable Go program| gosamples.dev
The package fmt defines GoStringer interface, and I think it doesn’t have recognition it deserves. According to the documentation: GoStringer is implemented by any value that has a GoString method, which defines the Go syntax for that value. The GoString method is used to print values passed as an operand to a %#v format. That means that you can implement GoString() string method on any of your types, and it will be called when the object of this type is formatted using %#v.| blog.orsinium.dev
An introduction to Go errors.| go.dev