Meta
February 2026 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 Archives
- September 2016 (1)
- May 2016 (1)
- January 2016 (2)
- April 2015 (1)
- August 2014 (1)
- May 2013 (1)
- November 2012 (2)
- August 2012 (1)
- July 2012 (16)
Author Archives: Dan Burton
GPG signing for github & mac
I just went through a few steps to get gpg signing to work on my mac and show up on github. I wanted to quickly document the process since the instructions are a little bit scattered. All of it basically came … Continue reading
Posted in Uncategorized
2 Comments
Stackage LTS and GHC 8.0
The release of GHC 8.0.1 has recently been announced. Hooray! People are already asking about when LTS Haskell will include the new GHC. While I’m also excited for this to happen as soon as possible, it’s worth taking a look … Continue reading
Posted in Uncategorized
1 Comment
Stackage is reverting to aeson-0.9
Starting immediately, Stackage nightly builds will be stepping back from aeson-0.10.0.0 to aeson-0.9.0.1. Due to issues with aeson-0.10, we are planning to discontinue LTS 4. Next Sunday (2016-01-24) we will begin LTS 5, which will ship with aeson-0.9. Under normal circumstances, the support … Continue reading
Posted in Uncategorized
1 Comment
What to do with aeson-0.10?
aeson-0.10.0.0 has been out since September 2015. Aeson is widely used, and adoption of the new version was fairly slow. The changelog claims, “the API changes below should be upwards compatible from older versions of aeson. If you run into … Continue reading
Posted in Uncategorized
Leave a comment
An informal explanation of stackage-sandbox
Works on my machine, will it work on yours? Suppose there’s a Haskell project called stackage-cli that I’d like to share with you. It builds just fine on my machine, but will it build on yours? If we have different … Continue reading
Posted in Uncategorized
1 Comment
Similarities: Monoid, MonadPlus, Category
This is perhaps obvious to anyone who has thoroughly studied category theory, but the similarities between Monoid, MonadPlus, and Category, have really struck me lately. I’m going to take a smidgeon of artistic license to present this train of thought. … Continue reading
Posted in Uncategorized
4 Comments
Two implementations of Seers
Last time, we implemented a bowling game scorer by using a Tardis. If you aren’t yet familiar with the Tardis’s interface, then I recommend you check out the explanation on Hackage. (tl;dr it’s a State monad with get and put, … Continue reading
Posted in Uncategorized
1 Comment
Bowling on a Tardis
> {-# LANGUAGE DoRec #-} > import Control.Monad.Tardis A few months ago, I released the tardis package. I promised a few blog posts about it, but put it off until now. If you haven’t heard of my "tardis" package yet, … Continue reading
Posted in Uncategorized
1 Comment
My experience with Typed Racket: the negative parts
My experience with Typed Racket A while ago, I began a project to re-implement Racket’s web server library in Typed Racket (TR) by providing type annotations to the existing code. I began by typing the xml collection library, but after … Continue reading
Posted in Uncategorized
3 Comments
Pipes to Conduits part 8: A comparison
In this series, we started with the simplest of Pipe implementations, and added features one by one until we reached Conduit-like functionality. Today, we’ll strip away the abort and close features not present in Conduit (the former might be considered … Continue reading
Posted in Uncategorized
Leave a comment