Excellent paper on Income Mobility

Here is the Chetty Paper. It's a big correlational study done across time in the US, looking at income mobility - comparing children's income at age 30 to that of their parents.

It's been floating around the blogosphere, and the results are surprising:

  1. Income mobility has remained flat, in spite of …

more ...



Handle Failure with MonadPlus/ApplicativePlus

Handling failure is probably the most important part of building reliable systems. Monads are a common method of encapsulating failure - for instance, Option[T] returns either Some(t) or None, and None represents the failure. But Monads do not actually have any mechanism for handling failure - in principle, a monad …

more ...