Haskell: Surprisingly Procedural?

2025-01-19

This article challenges the common misconceptions surrounding Haskell, arguing that it excels as a procedural language. It delves into Haskell's treatment of side effects as first-class values, explaining the underlying mechanics of `do` blocks and demonstrating the use of functions like `pure`, `fmap`, and `liftA2` to manipulate them. The author showcases `sequenceA` and `traverse` for handling collections of side effects and illustrates how these features enable efficient metaprogramming. A complex example demonstrates Haskell's strengths in managing state and caching, contrasting it with other languages' limitations. The article also explores advanced concepts like the `State` monad for improved control and streaming results.

Read more
Development Side Effects

The Kelly Criterion: A Mathematical Approach to Insurance Decisions

2024-12-21

This article explores how the Kelly criterion can be used to make rational decisions about insurance. The author debunks common misconceptions about insurance, arguing it's a mathematical, not philosophical, problem. The core idea is that insurance prevents significant wealth drawdown, accelerating compound interest growth. A formula is presented to calculate the value (V) of insurance, considering current wealth, premium, accident probability, and cost. Motorcycle and helicopter insurance examples illustrate the calculations and deductible's impact. The author explains how insurance companies profit and the relativity of costs.

Read more