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.
…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?
…Resource embedding tools like embed
allow developers to include static assets
and other unpublished files like templates in their executable programs.
Let’s see how.
…