Re: [Haskell-cafe] Socket Programming

2007-01-03 Thread Reilly Hayes
Or you could ignore the problem of shutdown altogether: http://swig.stanford.edu/~candea/papers/crashonly/ On Jan 2, 2007, at 12:20 PM, Chris Kuklewicz wrote: Mark Goldman wrote: I am trying to write a toy echo server that can handle multiple connections. I would like to be able to test

Re: [Haskell-cafe] Re: Why Not Haskell?

2006-08-08 Thread Reilly Hayes
On Aug 8, 2006, at 1:42 AM, Immanuel Litzroth wrote:"Reilly Hayes" [EMAIL PROTECTED] writes: I don't understand your argument. How exactly does the GPL get in theway of selling software as an instantiation of business expertise?Are you saying that you have the business

Re: [Haskell-cafe] Re: Why Not Haskell?

2006-08-07 Thread Reilly Hayes
On Aug 7, 2006, at 10:00 AM, Stefan Monnier wrote:In any case, making a living by selling a program (as opposed to servicesaround that program) is a difficult business.  Making a living writing and selling programs for use by a wide audience is one thing. But there is a lot of money to be made by

Re: [Haskell-cafe] Can Your Programming Language Do This?

2006-08-02 Thread Reilly Hayes
I don't think this commentary is really fair.  It's also insular and bad for the reputation of the Haskell community.  There are enough barriers to exploring FP and Haskell already.  The purpose of the article was to encourage people to start taking baby steps toward FP, not to demonstrate a deep

Re: [Haskell-cafe] Can Your Programming Language Do This?

2006-08-02 Thread Reilly Hayes
to start somewhere, hopefully others will startdown that road sooner rather than later. Jared. Reilly Hayes[EMAIL PROTECTED] ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Porting GHC to OSX86?

2006-05-06 Thread Reilly Hayes
SRC_HC_OPTS += -H32m -reilly hayes On May 5, 2006, at 7:34 PM, Scott Weeks wrote: Hi All, Does anyone know if there's been any headway on this? If there's not a port available, where do I go about finding the hc files? Could I compile on a windows or linux x86 box and use the generated hc files

Re: [Haskell-cafe] Question about Arrows and Computation by Paterson

2006-03-24 Thread Reilly Hayes
on. In retrospect, it's obvious. -reilly hayes ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http

[Haskell-cafe] Question about Arrows and Computation by Paterson

2006-03-23 Thread Reilly Hayes
State s i o = ST ((s,i) - (s,o)) instance Arrow (State s) where pure f = ST (id `x` f) (ST f) (ST g) = ST (g . f) first (ST f) = ST (assoc . (f `x` id) . unassoc) -Reilly Hayes ___ Haskell-Cafe mailing