Re: [Haskell] Haskell Weekly News: January 16, 2006

2006-01-17 Thread Donald Bruce Stewart
bulatz: > Hello Donald, > > Monday, January 16, 2006, 3:37:33 AM, you wrote: > > > DBS> * Arrays. Bulat Ziganshin [7]wrote an interesting RFC on the various > DBS>Haskell array interfaces. > > DBS>7. http://article.gmane.org/gmane.comp.lang.haskell.general/12992 > > imho, the

[Haskell] Call for Papers - GPCE'06

2006-01-17 Thread Emir Pasalic
Apologies for multiple/overlapping posts. -- CALL FOR TECHNICAL PAPERS Fifth International Conference on Generative Programming and Component Engineering (GPCE'06) http

Re: [Haskell] Haskell Weekly News: January 16, 2006

2006-01-17 Thread Bulat Ziganshin
Hello Donald, Monday, January 16, 2006, 3:37:33 AM, you wrote: DBS> * Arrays. Bulat Ziganshin [7]wrote an interesting RFC on the various DBS>Haskell array interfaces. DBS>7. http://article.gmane.org/gmane.comp.lang.haskell.general/12992 imho, the following will be more descrip

[Haskell] Re: darcsweb installed

2006-01-17 Thread Dominic Steinitz
Simon Marlow microsoft.com> writes: > > I have installed darcsweb on darcs.haskell.org. To browse the available > darcs repositories, go here: > > http://darcs.haskell.org/darcsweb > > It's also available as http://hackage.haskell.org/darcsweb. > > Note that currently I have omitted GHC, th

Re: [Haskell] Re: Haskell DB bindings (was Re: ANN: HDBC (Haskell Database Connectivity)

2006-01-17 Thread Benjamin Franksen
On Tuesday 17 January 2006 16:08, Keean Schupke wrote: > John wrote: > >On 2006-01-14, Keean Schupke <[EMAIL PROTECTED]> wrote: > >>Erm, has nobody replied to this yet? I want a robust interface, > >> that uses bracket notation all the way down, so that any error is > >> caught and resources are f

Re: [Haskell] Simple IO Regions

2006-01-17 Thread Keean Schupke
I really like this Oleg... I think I will use this myself as much as possible in future... As my DB code already uses bracket notation and an opaque/abstract DB handle type, it should be quite easy to incorporate this, without changing the interface... Cool! Regards, Keean. [EMAIL PROTE

Re: [Haskell] Re: Haskell DB bindings (was Re: ANN: HDBC (Haskell Database Connectivity)

2006-01-17 Thread Keean Schupke
John wrote: On 2006-01-14, Keean Schupke <[EMAIL PROTECTED]> wrote: Erm, has nobody replied to this yet? I want a robust interface, that uses bracket notation all the way down, so that any error is caught and resources are freed appropriately without the use of finalizers (which may not g

Re: [Haskell] GLUT gears speed

2006-01-17 Thread Sebastian Sylvan
On 1/17/06, Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > Am Montag, 16. Januar 2006 22:12 schrieb Sebastian Sylvan: > > On 1/16/06, Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > > > Am Montag, 16. Januar 2006 15:16 schrieb Sebastian Sylvan: > > > > [...] > > > > > > Hello Sebastian, > > > > > > th

[Haskell] Spring School on "Datatype-generic programming", Call for Participation

2006-01-17 Thread Fermin Reig
(Apologies for multiple copies) Call for Participation Spring School on Datatype-Generic Programming http://www.cs.nott.ac.uk/ssdgp2006/ University of Nottingham, UK 24-27 April 2006 Background and objectiv

Re: [Haskell] Re: haskell.org Simple Permissive License

2006-01-17 Thread Wolfgang Jeltsch
Am Dienstag, 17. Januar 2006 06:36 schrieb Ashley Yakeley: > In article <[EMAIL PROTECTED]>, > > Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > > According to http://www.opensource.org/licenses/mit-license.php it should > > read: > > > > [...] to any person obtaining *a copy of* this work, > >

Re: [Haskell] GLUT gears speed

2006-01-17 Thread Wolfgang Jeltsch
Am Montag, 16. Januar 2006 22:12 schrieb Sebastian Sylvan: > On 1/16/06, Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > > Am Montag, 16. Januar 2006 15:16 schrieb Sebastian Sylvan: > > > [...] > > > > Hello Sebastian, > > > > thank you for your answer. > > > > > As long as you don't do it naively th

[Haskell] Simple IO Regions

2006-01-17 Thread oleg
This message shows a very simple implementation of Monadic Regions (for the particular case of IO and reading the file). The technique *statically* guarantees that neither a file handle nor any computation involving the handle can leak outside of the region that created it. Therefore, the handle c