[Haskell-cafe] more haskeem: it's just scheme in haskell now, no more almost

2008-02-03 Thread Uwe Hollerbach
Hello, haskellers, my mud pies are getting bigger: I have added an exception-handling mechanism to haskeem (ie, for handling exceptions at the scheme level, not the haskell level; that was already working), and also hooked up the REPL to gnu readline: the example code for the readline command was

Re: [Haskell-cafe] Cabal, GHC, FFI and Visual Studio on Windows

2008-02-03 Thread Magnus Therning
Duncan Coutts wrote: On Sat, 2008-02-02 at 22:33 +, Magnus Therning wrote: Duncan Coutts wrote: [..] Just so I'm sure I understand... Sure thing. Or are you just trying to link some C code statically into a haskell program, but it just so happens that this C code relies on being built

Re: [Haskell-cafe] SPJ on the radio (at .NET Rocks :)

2008-02-03 Thread Daniil Elovkov
It's great to see that Haskell and FP gains more and more visibility. One very little comment, continuing on the topic of mathematical schools and traditions: Shönfinkel was not a German mathematician, but a Soviet one (he was Jewish, of course). Taking into account the fact that he already

[Haskell-cafe] Yi, or Gtk2hs or fedora rpm problem?

2008-02-03 Thread Jon Fairbairn
This was mentioned on the yi-devel list http://groups.google.com/group/yi-devel/browse_frm/thread/392c3cd612490b1a/c304d54ffc000e4a?lnk=gstq=HSgtk.o%3A+unknown+symbol# but didn't cause much excitement as it's not clear whose problem it is, so I'll ask here as well: I recently downloaded yi-0.3

[Haskell-cafe] hdbc, Oracle, and Solaris

2008-02-03 Thread Daniil Elovkov
Hello folks. I don't understand whether hdbc has a specific Oracle backend or not (not via odbc). It is listed in the description of hdbc, but not really found elsewhere, it seems. I'd like to have a non-odbc support because it is very desirable to have it working on Solaris, and I'm not

Re: [Haskell-cafe] more haskeem: it's just scheme in haskell now, no more almost

2008-02-03 Thread Don Stewart
uhollerbach: Hello, haskellers, my mud pies are getting bigger: I have added an exception-handling mechanism to haskeem (ie, for handling exceptions at the scheme level, not the haskell level; that was already working), and also hooked up the REPL to gnu readline: the example code for the

[Haskell-cafe] RE: highlighting-kate - syntax highlighting library

2008-02-03 Thread mgsloan
Awesome! It looks quite nice, though it takes ages to compile. Would this be suitable for a text editor? One issue with text editors is you don't want to reprocess the entire file for each highlight. This, combined with multi-line syntactic elements, such as multiline strings or comments, makes

Re: [Haskell-cafe] parsec3 pre-release [attempt 2]

2008-02-03 Thread Antoine Latter
Another picky nit: The monad transformer type is defined as such: data ParsecT s u m a = ParsecT { runParsecT :: State s u - m (Consumed (m (Reply s u a))) } with the Consumed and reply types as: data Consumed a = Consumed a | Empty !a data Reply s u a = Ok !a

Re: [Haskell-cafe] RE: highlighting-kate - syntax highlighting library

2008-02-03 Thread Colin Paul Adams
Michael == mgsloan [EMAIL PROTECTED] writes: Michael Awesome! I've been working on a source code syntax highlighting library. It is now somewhat usable, and help would be welcome in testing it further, so I'm making it publicly available: darcs get

Re: [Haskell-cafe] RE: highlighting-kate - syntax highlighting library

2008-02-03 Thread Felipe Lessa
On Feb 3, 2008 6:42 PM, mgsloan [EMAIL PROTECTED] wrote: Would this be suitable for a text editor? Note that we already have a binding to GtkSourceView, see http://www.haskell.org/gtk2hs/docs/current/Graphics-UI-Gtk-SourceView.html . Cheers, -- Felipe.

[Haskell-cafe] IRC Statistics

2008-02-03 Thread Vlad Dogaru
Hello, as part of an effort to learn Haskell, me and a few friends want to write an IRC statistcs generator. It would analyse logs and output HTML, text, or whatever other format. However, I have a few questions; we're all pretty new to this and it would be a shame to start off terribly

[Haskell-cafe] Re: highlighting-kate - syntax highlighting library

2008-02-03 Thread John MacFarlane
Not to me. Where is Eiffel? I've just added it. The library is so big already that I left out a bunch of languages for which there are Kate syntax definitions. But I'm happy to add them on request. John ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] Re: Who started 42, and when?

2008-02-03 Thread Benjamin L. Russell
That depends partly on how 42 it is pronounced. Normally, it is pronounced yon-juu-ni, which has no relevance to death. However, it is also possible to pronounce it shi-ni, which also means to die. Incidentally, it is the 4 part of 42 that is pronounced shi, which alternatively means death, and

[Haskell-cafe] ANN: bimap 0.1 - a bidirectional map

2008-02-03 Thread Stuart Cook
Data.Bimap is a data structure that represents a bidirectional mapping between two key types. A bimap has two type parameters; each value in the bimap is associated with exactly one value of the opposite type. In other words, it's a bijection between (subsets of) its argument types. The API is