Re: [fpc-pascal] Servlet server for Fpc apps

2009-03-30 Thread ritchie turner
I'll chime in, I did a haxe servlet server called hxServlet, it's available on libs.haxe.org. I'm thinking of doing something similar for fpc. First, hxServlet is like ruby on rails mongrel, indeed it uses the http header parser from mongrel, however it uses haXe's neko vm as the server, and it's

Re: [fpc-pascal] Boehm GC

2009-03-18 Thread ritchie turner
Hi Adrian, Guilty! bd. On Wed, 2009-03-18 at 17:03 +0100, Adrian Veith wrote: > ritchie turner schrieb: > > Thanks all, I've got something to go on now. > > > > bd. > > > bye the way - are you black dog from the h

Re: [fpc-pascal] Boehm GC

2009-03-18 Thread ritchie turner
Thanks all, I've got something to go on now. bd. On Wed, 2009-03-18 at 16:34 +0100, Marco van de Voort wrote: > In our previous episode, Krishna said: > > > > > > I'm new to fpc and pascal, i.e. I've never done a project in it, but > > > i've been following the lists for a while and dabbling. >

Re: [fpc-pascal] Boehm GC

2009-03-18 Thread ritchie turner
hard to justify - however, removing a class of errors from my code should speed up my development and be worth it. bd On Wed, 2009-03-18 at 14:48 +0100, Adriaan van Os wrote: > ritchie turner wrote: > > I'm new to fpc and pascal, i.e. I've never done a project in it, but >

[fpc-pascal] Boehm GC

2009-03-18 Thread ritchie turner
I'm new to fpc and pascal, i.e. I've never done a project in it, but i've been following the lists for a while and dabbling. I like using a garbage collector and I know you can replace the memory manager in fpc so i guess it's probably trivial to replace the standard with boehm. Wondered if anyon