Having your favorite commands available over SSH can be very convenient.
I think I talked about this a couple of times before, but I usually work by
SSH-ing from my mac into a Linux machine (a rather chunky one, might I add).
While it allows me to work faster when I’m not...
This post talks about writing WebAssembly by hand (using its textual format),
and mentions a new GitHub repository I've created with code samples.
A bit of nomenclature first. WASM stands for WebAssembly - it has a binary
format and a
textual format.
The textual format, called We...
What is the Tao of Go, and how can we work with it, like a surfer going
with the waves instead of struggling against them? By being kind, simple,
humble, and not striving; here’s how.
Choosing good test cases for our Go programs can be a bit hit-and-miss.
What if we could automate that process? Let’s talk about randomisation,
property-based testing, and Go’s built-in fuzz testing feature.
The Easter release is here!
Introduction In episode 9, Miki discussed how a command flag can be decoded into a user defined type with the Value interface. As a recap, the Value interface consists of two methods: one for serializing the underlying concrete type and one for deserializing a string into an obje...