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

Go Constants and Type Coercion

Constants in Go, and an observation about the type system. Following on from previous articles about type coercion, another limited form is identified and explored.

April 26, 2024 · Sam Burns

Channel Directionality in Go

An exploration of channel direction in Go, and a perspective on its implications for the type system.

April 25, 2024 · Sam Burns

Closing Go Worker Pools

An approach we might take to closing worker pools using standard lib’s sync.WaitGroup to keep track of how many of the workers are still running.

April 21, 2024 · Sam Burns