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

Go Worker Pools

The worker pool pattern involves creating a specific number of workers (goroutines), each responsible for executing tasks. These workers listen for tasks on a common channel. Any free worker can pick up a task and execute it.

April 20, 2024 · Sam Burns

London Gophers Oct '23 Talk - Go Quantum

Video of my Go Quantum talk, London Gophers meetup, October 2023

April 15, 2024 · Sam Burns