• posts projects
    • May 14, 2019
    • 5 minutes
    • Software Architecture
    • Functional Programming
    The Component Pattern

    This post details a useful pattern for organizing stateful components in functional code. This post assumes knowledge of Haskell, up to Monad-Transformers.

    • March 06, 2019
    • 6 minutes
    • Functional Programming
    Mutability Is a Great Secret To Have

    When programming in a Functional style, Mutability is often avoided on principle. But what’s more important is having functions be immutable from the outside. In this post we’ll see how to use interior mutation while providing an immutable interface.