

Recent
Structure as Control Flow
·2501 words·12 mins
Foldable answers what a structure means when combined; Traversable answers what happens when effects run across it. Together they show how structure, effects, and abstraction interact.
Combination before Identity
·1599 words·8 mins
This post introduces the fundamental algebraic structures of Semigroups and Monoids, demonstrating how the simple power of associative combination enables complex patterns like Applicative error accumulation and foldMap while emphasizing the importance of only ’earning’ an identity element when it truly exists in the domain.
You don't need a Monad (yet)
·2412 words·12 mins
This post explores the hierarchy of functional abstractions by reframing Functors, Applicatives, and Monads as a ladder of expressive power, moving from simple context-aware mapping to independent effect composition and eventually the sequential dependency of the Monad.
Stop fearing the Monad
·4112 words·20 mins
This post demystifies Haskell monads by reframing them as a familiar design pattern for managing context, transitioning from practical code examples in multiple languages to the underlying category theory of monoids over endofunctors.
Coverage checkers
·2406 words·12 mins
This post introduces pattern‐match coverage checking in Vig, showing how Luc Maranget’s constructor‑matrix algorithm can be implemented in Rust to detect unreachable arms and guarantee exhaustiveness at compile time without any runtime cost.