I love Go’s implicit interfaces. While convenient, they can also introduce subtle bugs
unless you’re careful. Types expected to conform to certain interfaces can fluidly add or
remove methods. The compiler will only complain if an identifier anticipates an interface,...
I love Go’s implicit interfaces. While convenient, they can also introduce subtle bugs
unless you’re careful. Types expected to conform to certain interfaces can fluidly add or
remove methods. The compiler will only complain if an identifier anticipates an interface,...
I love Go’s implicit interfaces. While convenient, they can also introduce subtle bugs
unless you’re careful. Types expected to conform to certain interfaces can fluidly add or
remove methods. The compiler will only complain if an identifier anticipates an interface,...
Describes the WordStar diamond, a wonderful set of key bindings from the 1970s, and how you can use it in 2023 on Linux or Windows.
Go 1.21 manages Go toolchains like any other dependency; you will never need to manually download and install a Go toolchain again.
Go 1.21 expands Go's commitment to backward compatibility, so that every new Go toolchain is the best possible implementation of older toolchain semantics as well.
In Improving Team Efficiency By Measuring and Improving Code Review Cycle Time, I mentioned that one thing we can do to understand if code review is causing delays is to measure it.
Since then, I've also worked on building this at Deliveroo with one of my colleagues, just before...
Before the release of version 1.21, you couldn’t set levels for your log messages in Go
without either using third-party libraries or writing your own boilerplates. Coming from
Python, I’ve always found this odd, considering that this capability has been in the Python...