[Haskell] ANN: curl-1.3.4

2009-01-18 Thread Sigbjorn Finne
Hi, a new version 'curl', a complete Haskell binding to the libcurl API, is now available and have been uploaded to Hackage: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/curl Git repo at git://code.galois.com/curl.git Appended is the list of changes since the previous release.

[Haskell] Re: HaskellWiki Update

2009-01-18 Thread Benjamin L . Russell
On Sat, 17 Jan 2009 20:47:39 -0800, Ashley Yakeley wrote: >There has been a lot of spam on HaskellWiki. Since anonymous edits have >been switched off, a spammer tactic has been to create hundreds of >accounts to evade individual account blocks. > >To combat this, I have > >1. deleted all user a

[Haskell] Re: ANNOUNCE: Turbinado V0.4

2009-01-18 Thread Alson Kemp
>Turbinado (http://www.turbinado.com) is an easy to use Oops. That should be !! http://www.turbinado.org. !! - Alson ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

Re: [Haskell] ANNOUNCE: Turbinado V0.4

2009-01-18 Thread Sebastian Sylvan
-- From: "Alson Kemp" Sent: Sunday, January 18, 2009 6:06 PM To: Subject: [Haskell] ANNOUNCE: Turbinado V0.4 Turbinado (http://www.turbinado.com) is an easy to use Model-View-Controller-ish web framework for Haskell. You mean http://www.turbina

[Haskell] ANNOUNCE: Turbinado V0.4

2009-01-18 Thread Alson Kemp
Turbinado (http://www.turbinado.com) is an easy to use Model-View-Controller-ish web framework for Haskell. The source for the framework can be found at: http://github.com/alsonkemp/turbinado The source for the website turbinado.org can be found at: http://github.com/alsonkemp/turbinado-website

[Haskell] ICLP 2009: Call for workshop proposals

2009-01-18 Thread cfp
*** CALL FOR WORKSHOP PROPOSALS *** ICLP 2009 25th International Conference on Logic Programming Pasadena, California, USA July 14-17, 2009

Re: [Haskell] How to define gunfold on List?

2009-01-18 Thread José Pedro Magalhães
Hi there, There's no difference. See http://hackage.haskell.org/packages/archive/base/4.0.0.0/doc/html/src/Data-Data.html#line-1034 You can also see many other instances there. Cheers, Pedro On Sun, Jan 18, 2009 at 10:50, haihualin wrote: > Hi, > > Does some one know how to define gunfold on

[Haskell] How to define gunfold on List?

2009-01-18 Thread haihualin
Hi, Does some one know how to define gunfold on recursive data struction like List? The ghc doc only give the example for non-recursive data like below. data T a b = C1 a b | C2 deriving (Typeable, Data) GHC will generate an instance that is equivalent to instance (Data a, Data b) => Data (T