• papers podcast posts projects
    • 2019年05月14日
    • 5 分
    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.

    • Functional Programming
    • Software Architecture
    • 2019年03月06日
    • 6 分
    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.

    • Functional Programming