Today is the memorial day of St Gertrude of Nivelles, patron saint of the recently deceased.
Related Posts
Gasoline prices comparison
My regular gas station in West LA is running just under $4.40 a (US) gallon right now. My dad’s regular petrol station in South London is £1.30 a litre, which is about $9.70 a gallon.
the Internet has everything
I think this is quite possibly proof of this fact. As well as being one of the more amazing things I've found on the web in the last few months.
Do-notation can be misleading
Consider the following function: oddness :: Maybe Int oddness = do let a = Just 1 :: Maybe Int b >= \b -> return b And recall the definition of (>>=) for Maybe: instance Monad Maybe where (Just x) >>= k = k x Nothing >>= _ = Nothing So…