(Probably) forcing Git to never prompt for authentication

Ep. 1: Defending Against Memory Breaches: Exploring Rust and Go's Safety Mechanisms

Introduction: Rust’s memory safety features are advantageous to Rust developers because they: Ensure robust protection against buffer overflows and underflows, enhancing the reliability and security of software. Empower developers to manage type coercion effectively, pr...

Go performance from version 1.0 to 1.22

Shows how much the performance of Go has improved from version 1.0 through to 1.22 (including PGO) -- in its compiler, runtime, and libraries.

What is 'iota' in Go?

iota is a neat feature of Go that lets us create “enums”: lists of constants with arbitrary values. Let’s find out how to use iota, with this quick tutorial.

The smallest thing in Go

iota is a neat feature of Go that lets us create “enums”: lists of constants with arbitrary values. Let’s find out how to use iota, with this quick tutorial.

Don't require people to change 'source code' to configure your programs

Go Developer Survey 2024 H1 Results

What we learned from our 2024 H1 developer survey

GoTime #311 - Ship software, not code

I was live with Natalie to discuss how GOOS and GOARCH spark joy.

GNU Autoconf is not replaceable in any practical sense

Test names should be sentences

Tests communicate a lot of information, to readers, other developers, and even our future selves. Well-written tests focus on a single unit of behaviour that can be described in a brief sentence, and we can use that sentence as the name of the test.