To be notified of all new published content, subscribe to the site RSS feed .
To be notified of all new published content, subscribe to the site RSS feed .
Slices are flexible and efficient, but their implementation has some quirky behaviours, leading to unexpected results.
Let us see how they really work and how to avoid running into problems.
…Sometimes a service needs to handle inbound emails, not just HTTP requests
In this presentation, we shall see how to write an SMTP service, using just the Go stdlib and one complementary package.
…Some tests may only fail the second time you run them, but the integrated debugging in GoLand will only run them once by default.
How can we use it to debug them?
…How to create CLI programs with multiple commands, flags and subcommands, and how to do it fast and simply?
google/subcommands makes it a breeze.
Let us see how.
…After a limited and somewhat hidden version in Go 1.17, Generics are coming to Go 1.18, in the form of type parameters.
This presentation covers generics and the associated library extensions:
…The Go SDK has been including test coverage reports since Go 1.2.
How can we obtain a time graph of test coverage, without needing a SaaS service?
…