-
Christopher Lane Hinson
A hairy haskell hacker with interests in games, computer science, and social justice.
View Full Profile →
Categories
Archives
- December 2012
- October 2012
- April 2011
- March 2011
- September 2010
- July 2010
- June 2010
- November 2009
- September 2009
- August 2009
- May 2009
- April 2009
- March 2009
- January 2009
- November 2008
- October 2008
- August 2008
- May 2008
- April 2008
- March 2008
- January 2008
- December 2007
- November 2007
- June 2007
- January 2007
Author Archives: Christopher Lane Hinson
The One Function per Typeclass Rule
After about five years programming in Haskell, I think we need a rule: Only put one function in a typeclass. Why? Because inevitably someone comes along with a data type for which one or the other function of a typeclass … Continue reading
Posted in Haskell
4 Comments
But does it crawl?
Roguestar is officially a dungeon crawl now, as it actually has dungeons: For the moment I’m ok with the empty black pits, but I want to do something with the skylights. Maybe slant them at an angle? I’ll probably also … Continue reading
Posted in Roguestar
Leave a comment
Memoized Dataflow Streams
In reactive programming we can choose between two models: “pull,” in which we run a computation each time output is required, and “push,” in which we run the computation each time input arrives. Which model we use depends on whether … Continue reading
