Posts tagged "haskell"

Here you can find all posts associated with the tag haskell:


Modeling dataframes in Haskell using higher-kinded types

This post is an exploration of the type-level shenanigans that can be used to model dataframes in Haskell. I also show how to combine higher-kinded types with Haskell's automatic derivation mechanism

Posted on 2025-01-22. Last updated on 2025-02-08.

,

Scientific computing with confidence using typed dimensions

I defer to my computer to check the validity of my scientific computations. In this post, I will describe typed dimensions, and showcase the software package that makes it possible.

Posted on 2024-11-20. Last updated on 2025-02-08.

,

Trading strategies with typed features using Haskell and type families

In this blog post, I show you the basics of defining typed features in trading strategies using Haskell.

Posted on 2024-02-04. Last updated on 2025-02-08.

,

Efficient rolling statistics

This post shows how to design efficient rolling statistics routine based on recurrence relations, as well as implementations in Haskell.

Posted on 2023-03-23. Last updated on 2025-02-08.

, ,

Exploring the multiverse of possibilities all at once using monads

I'm working on a global optimization problem, trying to reduce the size of the solution set as much as possible. In this post, I'll show you how to build computations involving choices, such that we traverse the multiverse of possibilities all at once. This post gives an intuition behind the list monad in Haskell.

Posted on 2022-03-02. Last updated on 2025-02-08.

Can you make heterogeneous lists in Haskell? Sure — as long as your intent is clear

Haskell's type system might seem restrictive sometimes. For example, heterogeneous lists are not allowed. In this post, I show how to build heterogenous collections using existential quantification -- which requires us to be explicit about our intent.

Posted on 2021-09-26. Last updated on 2025-02-08.