Re: [Haskell-cafe] Images in Haddock documentation: best practices?

2011-12-25 Thread Magnus Therning
On Sun, Dec 25, 2011 at 01:02:57AM -0500, Antoine Latter wrote: > On Sun, Dec 25, 2011 at 12:04 AM, Brent Yorgey wrote: > > Hi all, > > > > Although it doesn't seem to be documented in the user manual (!), > > Haddock supports inline images, using a <> syntax.  I'd like to > > include some images

[Haskell-cafe] Siege, a DBMS written in Haskell

2011-12-25 Thread Daniel Waterworth
Hi all, This is what I've been working on recently in my spare time, https://github.com/DanielWaterworth/siege . It's a DBMS written in Haskell, it's in a partially working state, you can start it up and interact with it using the redis protocol, it implements a subset of redis's commands. It sto

[Haskell-cafe] Reifying case expressions [was: Re: On stream processing, and a new release of timeplot coming]

2011-12-25 Thread Heinrich Apfelmus
Eugene Kirpichov wrote: In the last couple of days I completed my quest of making my graphing utility timeplot ( http://jkff.info/software/timeplotters ) not load the whole input dataset into memory and consequently be able to deal with datasets of any size, provided however that the amount of da

Re: [Haskell-cafe] strict, lazy, non-strict, eager

2011-12-25 Thread Yves Parès
2011/12/25 Tom Murphy > On the other hand: > I'd _strongly_ argue against "making up our minds" about definitions > within the Haskell community. Most of these concepts aren't > Haskell-specific. > An example of something to avoid is our definitions of "concurrency" > and "parallel

Re: [Haskell-cafe] Reifying case expressions [was: Re: On stream processing, and a new release of timeplot coming]

2011-12-25 Thread Eugene Kirpichov
Hello Heinrich, Thanks, that's sure some food for thought! A few notes: * This is indeed analogous to Iteratees. I tried doing the same with Iteratees but failed, so I decided to put together something simple of my own. * The Applicative structure over this stuff is very nice. I was thinking, wha

Re: [Haskell-cafe] Reifying case expressions [was: Re: On stream processing, and a new release of timeplot coming]

2011-12-25 Thread Eugene Kirpichov
On Mon, Dec 26, 2011 at 12:19 AM, Eugene Kirpichov wrote: > Hello Heinrich, > > Thanks, that's sure some food for thought! > > A few notes: > * This is indeed analogous to Iteratees. I tried doing the same with > Iteratees but failed, so I decided to put together something simple of my > own. > *

Re: [Haskell-cafe] Reifying case expressions [was: Re: On stream processing, and a new release of timeplot coming]

2011-12-25 Thread Gábor Lehel
On Sun, Dec 25, 2011 at 9:19 PM, Eugene Kirpichov wrote: > Hello Heinrich, > > Thanks, that's sure some food for thought! > > A few notes: > * This is indeed analogous to Iteratees. I tried doing the same with > Iteratees but failed, so I decided to put together something simple of my > own. > * T

Re: [Haskell-cafe] Composing Enumeratees in enumerator

2011-12-25 Thread Conrad Parker
On 24 December 2011 05:47, Michael Craig wrote: > I've been looking for a way to compose enumeratees in the enumerator > package, but I've come up with nothing so far. I want this function > > (=$=) :: Monad m => Enumeratee a0 a1 m b -> Enumeratee a1 a2 m b -> > Enumeratee a0 a2 m b > > I'm buildi