Re: [Haskell-cafe] Interactive chatbot

2009-12-08 Thread Torsten Otto
02:00 schrieb Ben Millwood: > Oops, I clicked "reply" instead of "reply to all". Duplicating the > message below. > I suppose this means someone is going to get two copies of this. Sorry > someone! > > On Thu, Nov 5, 2009 at 12:56 AM, Ben Millwood > wrot

[Haskell-cafe] Interactive chatbot

2009-11-04 Thread Torsten Otto
way to interact with the user that would allow editing ones text before sending it to the bot? I guess we could try with a website, but don't know off hand how to do that, either, although I've seen beautiful webservers made in Has

Re: [Haskell-cafe] Haskell and GUI

2008-01-18 Thread Torsten Otto
Gee, wizzz, folks. Thank you all for the many hints. I can't say yet which one I'll dive into but I'm in good spirits about Haskell and GUI now. I like the idea of a functional approach and I don't need extensive GUIs either, so Grapefruit just added another candidate... Using the Cocoa API

[Haskell-cafe] Haskell and GUI

2008-01-14 Thread Torsten Otto
Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a button or two would do me. Thanks in advance! Regards, Torsten ___ Haskell-Cafe mailing list Haskell-Cafe

Re: [Haskell-cafe] Getting frantic with FranTk

2008-01-14 Thread Torsten Otto
Thank you for the encouragement, Justin. Unfortunately I did try that. But it may also be where my basic understanding is missing: "the libraries" - do I have to somehow compile all the source or can I just use it? The source is Haskell, but it all comes with makefiles - are these for use w

[Haskell-cafe] Getting frantic with FranTk

2008-01-13 Thread Torsten Otto
tem like Mac OS. I seems to be more than just to include the path when starting Hugs... Thanks in advance for any hints, regards, Torsten Otto ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Newb: List of nodes in a graph - is there a prettier way?

2007-09-28 Thread Torsten Otto
a list of all nodes in the graph. Thanks a bunch in advance. Regards, Torsten Otto >module Route where Datatypes for the representation of the graph: >type Id = Int >type Weight = Int >type Edge = (Id,Id) >type Graph = [ (Edge, Weight) ] >graph::Graph >graph = [ ((0,1)