Go vs Chrome PQC Regression

Differences between the release cycles of Google’s Go and Chrome will lead to a temporary regression in Post-Quantum Cryptography at the end of the year.

September 19, 2024 · Sam Burns

Letting Yourself Go II: Variable Naming

Letting Yourself Go: learning to do things the Go way from an OOP background. Part 2: Variable Naming

July 20, 2024 · Sam Burns

Letting Yourself Go I: Visibility, Scoping, and Package Sizes

Letting Yourself Go: learning to do things the Go way from an OOP background. Tips for developers on learning Go, for devs with a background in PHP, Java, C# etc.

July 14, 2024 · Sam Burns

Go Post-Quantum with Caddy

Cloudflare’s fork of Go adds post-quantum cryptography. Compiling Caddy with CFGo gives you a TLS handshake which is secure against store-now-decrypt-later quantum computer cryptanalysis.

July 7, 2024 · Sam Burns

Go Slices & Time Complexity

Slices in Go automatically adjust their size when new values are inserted. O(n) is the time complexity for this operation.

April 28, 2024 · Sam Burns