A demo-friendly web server Jun 03, 2024Or: don't hard-code your demo server port to 8080. Let it choose the next available port instead.
Containers from scratch? Mar 08, 2024Containers manage binaries and their supporting libs. Pure Go binaries don't need any external libs. Is the `scratch` image the right choice?
Communicate by (not) sharing memory Jan 05, 2024Can multiple goroutines write to the same slice without any safeguard? Sure, they can, but is it a good idea?