[Haskell-cafe] Re: ANN: list-tries-0.0 - first release

2009-04-22 Thread Matti Niemenmaa
Felipe Lessa wrote: On Wed, Apr 22, 2009 at 12:29:05AM +0300, Matti Niemenmaa wrote: Good to hear that it works for someone else, too. (I don't have a new enough version of containers installed myself, after upgrading to 6.10.2.) Just bear in mind that some functions won't work. What exactly

[Haskell-cafe] ANN: list-tries-0.0 - first release

2009-04-21 Thread Matti Niemenmaa
Announcing the first public release of list-tries! Version 0.0, woo! list-tries is a library providing implementations of finite sets and maps for list keys using tries, both simple and of the Patricia kind. The data types are parametrized over the map type they use internally to store the child

[Haskell-cafe] Re: ANN: list-tries-0.0 - first release

2009-04-21 Thread Matti Niemenmaa
Martijn van Steenbergen wrote: Matti Niemenmaa wrote: In order to run properly, list-tries needs a version of 'containers' that hasn't yet been released. I incorporated a little hack which makes it compile even with 0.2, but some calls will fail by calling 'error': 30 of my 1014 test cases do

[Haskell-cafe] Re: ANNOUNCE: Coadjute 0.0.1, generic build tool

2009-01-19 Thread Matti Niemenmaa
Brandon S. Allbery KF8NH wrote: On 2009 Jan 18, at 13:47, Matti Niemenmaa wrote: 3. Coadjute keeps track of command line arguments (see docs for details): for me this is really a killer feature, I don't know of anything else which does this. It's been done many times before; it never

[Haskell-cafe] Re: ANNOUNCE: Coadjute 0.0.1, generic build tool

2009-01-19 Thread Matti Niemenmaa
Paul Moore wrote: 2009/1/18 Matti Niemenmaa matti.niemenmaa+n...@iki.fi: Announcing the release of Coadjute, version 0.0.1! [...] Portability is striven towards in two ways: Is it intended to work on Windows? (I don't want to spend time downloading and trying to set it up if it was never

[Haskell-cafe] Re: ANNOUNCE: Coadjute 0.0.1, generic build tool

2009-01-19 Thread Matti Niemenmaa
Nicolas Pouillard wrote: Excerpts from Matti Niemenmaa's message of Sun Jan 18 19:47:46 +0100 2009: 3. Coadjute keeps track of command line arguments (see docs for details): for me this is really a killer feature, I don't know of anything else which does this. ocamlbuild does

[Haskell-cafe] Re: ANNOUNCE: Coadjute 0.0.1, generic build tool

2009-01-18 Thread Matti Niemenmaa
Henning Thielemann wrote: Matti Niemenmaa schrieb: Announcing the release of Coadjute, version 0.0.1! Web site: http://iki.fi/matti.niemenmaa/coadjute/ Hackage: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Coadjute snip How does it compare to http://hackage.haskell.org/cgi

[Haskell-cafe] ANNOUNCE: Coadjute 0.0.1, generic build tool

2009-01-17 Thread Matti Niemenmaa
Announcing the release of Coadjute, version 0.0.1! Web site: http://iki.fi/matti.niemenmaa/coadjute/ Hackage: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Coadjute Coadjute is a generic build tool, intended as an easier to use and more portable replacement for make. It’s not

[Haskell-cafe] Re: Data.List.Split

2008-12-14 Thread Matti Niemenmaa
Adam Vogt wrote: * On Saturday, December 13 2008, Gianfranco Alongi wrote: I have actually been thinking about a similar thing, but on the group subject. One can actually group things in many ways, such as groupBy (==) , so that groupBy (==) [1,2,1,2] should give [[1,1],[2,2]]. Of course

[Haskell-cafe] Re: [Somewhat OT] Speed

2008-10-28 Thread Matti Niemenmaa
Andrew Coppin wrote: This isn't specifically to do with Haskell, but... does anybody have any idea roughly how fast various CPU operations are? For example, is integer arithmetic faster or slower than floating-point? Is addition faster or slower than multiplication? How much slower are the

[Haskell-cafe] Re: ghc-6.11 + OpenGL/GLUT crashes on WinXP

2008-10-28 Thread Matti Niemenmaa
Conal Elliott wrote: I am using glut32 rather than freeglut (and no need for patching the darcs GLUT). I wonder if glut32-vs-freeglut could account for crash-vs-nocrash on 6.10 and 6.11 but not 6.9. I'd love to hear from someone on Windows and glut32. Windows XP with SP3 ghc-6.10.20081007

[Haskell-cafe] Re: File handles and pipes

2008-10-20 Thread Matti Niemenmaa
Matti Niemenmaa wrote: Brandon S. Allbery KF8NH wrote: Pipes are perhaps a bit misnamed: if you want to combine the output of two pipes and funnel it into a third you can't simply plumb them together, you need to provide code which reads from the output pipes and writes into the input pipe

[Haskell-cafe] Re: File handles and pipes

2008-10-19 Thread Matti Niemenmaa
Brandon S. Allbery KF8NH wrote: Pipes are perhaps a bit misnamed: if you want to combine the output of two pipes and funnel it into a third you can't simply plumb them together, you need to provide code which reads from the output pipes and writes into the input pipe. With the new

[Haskell-cafe] ANNOUNCE: Glob 0.1, globbing library

2008-10-17 Thread Matti Niemenmaa
Greetings to all, I hereby announce the release of Glob 0.1, a small library for glob-matching purposes based on a subset of zsh's syntax. Web page at: http://iki.fi/matti.niemenmaa/glob/index.html Hackage: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Glob Simple example: match

[Haskell-cafe] Re: Hackage and GUI (was Hackage status with GHC 6.10 release candidate)

2008-10-13 Thread Matti Niemenmaa
Hans van Thiel wrote: Secondly, has Gtk2Hs compatibility been tested with GHC 6.10? In the past there have sometimes been problems with new GHC releases and Gtk2Hs. These have always been addressed, but it usually took a few months.. I just built Gtk2Hs with the 6.10-rc on Windows, and it

[Haskell-cafe] Re: System.Process

2008-09-30 Thread Matti Niemenmaa
Timothy Goddard wrote: On Tue, 30 Sep 2008 08:49:44 Andrew Coppin wrote: Before anybody remarks that words will do this, consider the echo command, which treats whitespace meaningfully.) [EMAIL PROTECTED]:~/$ echo foo barbaz foo bar baz Echo doesn't receive special

[Haskell-cafe] ANNOUNCE: Pipe 1.0

2008-06-21 Thread Matti Niemenmaa
on other systems, say the BSDs or OS X. -- Matti Niemenmaa ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: ANNOUNCE: Pipe 1.0

2008-06-21 Thread Matti Niemenmaa
Don Stewart wrote: Interesting. Does it depend on an unreleased version of the process library? Indeed it does. Actually most of the code was written using the current released version, I just jumped the gun a bit when I saw how nice the new interface was. I'm hoping that the release of the

[Haskell-cafe] Re: Haddock compilation problem

2008-06-20 Thread Matti Niemenmaa
Ronald Guida wrote: I just upgraded to ghc-6.8.3, using a linux binary, and I am having a problem compiling Haddock. Haddock 2.1.0 and Haddock 2.0.0.0 both fail to build under ghc-6.8.3, but they both build successfully with ghc-6.8.2. I don't know if this is a Haddock problem, or a GHC

[Haskell-cafe] Re: Haddock compilation problem

2008-06-20 Thread Matti Niemenmaa
Matti Niemenmaa wrote: I now get some sort of System.Process-related link error, though. YMMV. Audrey Tang gave me the fix for this on the IRC channel: passing --ghc-option=-package process-1.0.0.1 dealt with that. It appears that it was all for naught, though: running the haddock binary