Re: Tango for D2: All user modules ported

2012-02-03 Thread mta`chrono
> Please don't change that! That's the way it should be. I tried very > hard, and unsuccessfully to avoid that code being duplicated in Phobos > and Tango, it's fantastic that you've finally achieved it. But it'll make tango depending on phobos which is something that not all people seem to like.

Re: GoingNative 2012 to be livestreamed tomorrow

2012-02-03 Thread deadalnix
Le 02/02/2012 03:07, Andrei Alexandrescu a écrit : I'm announcing this here because inevitably D will be mentioned during the panel with Bjarne Stroustrup, Herb Sutter, Hans Boehm, and myself. See you online! http://www.reddit.com/r/programming/comments/p71w6/goingnative_2012_livestreamed_for_fr

Re: GoingNative 2012 to be livestreamed tomorrow

2012-02-03 Thread Mattbeui
On Friday, 3 February 2012 at 13:18:14 UTC, deadalnix wrote: Sad to notice that going native require silverlight (managed language) to be watched. This sounds like a big fail to begin with . . . and will exclude a lot of people . . . I don't know, since Microsoft is doing this event, It was pr

Re: GoingNative 2012 to be livestreamed tomorrow

2012-02-03 Thread David
Am 03.02.2012 14:20, schrieb deadalnix: Le 02/02/2012 03:07, Andrei Alexandrescu a écrit : I'm announcing this here because inevitably D will be mentioned during the panel with Bjarne Stroustrup, Herb Sutter, Hans Boehm, and myself. See you online! http://www.reddit.com/r/programming/comments/p

D FCGI

2012-02-03 Thread James Miller
Hello everybody, Before I essentially spam everybody, I'll introduce myself. I am James Miller, and English developer living in New Zealand, I started using D about 2 months ago and am currently working on a large project using it. As part of that project, I developed a FastCGI library (mostly be

Re: D FCGI

2012-02-03 Thread David Nadlinger
General note: You might want to submit the libfcgi header part to Deimos (there is even a project for it already, albeit empty: [1]), and then build the convenience functions on top of it. This way, we can avoid duplication of efforts if somebody wants to use the C interface directly. David

Re: D FCGI

2012-02-03 Thread Adam D. Ruppe
D FCGI, a FastCGI library for D. I've also done something similar: https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff check out cgi.d. If you compile with -version=fastcgi, it uses the libfcgi while keeping the same interface as the default regular CGI.

Re: GoingNative 2012 to be livestreamed tomorrow

2012-02-03 Thread deadalnix
Le 03/02/2012 15:56, David a écrit : Am 03.02.2012 14:20, schrieb deadalnix: Le 02/02/2012 03:07, Andrei Alexandrescu a écrit : I'm announcing this here because inevitably D will be mentioned during the panel with Bjarne Stroustrup, Herb Sutter, Hans Boehm, and myself. See you online! http://w

Re: D FCGI

2012-02-03 Thread James Miller
On Feb 4, 2012 5:38 AM, "Adam D. Ruppe" wrote: >> >> D FCGI, a FastCGI library for D. > > > > I've also done something similar: > > https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff > > check out cgi.d. If you compile with -version=fastcgi, it > uses the libfcgi w

Re: D FCGI

2012-02-03 Thread James Miller
On Feb 4, 2012 5:31 AM, "David Nadlinger" wrote: > > General note: You might want to submit the libfcgi header part to Deimos (there is even a project for it already, albeit empty: [1]), and then build the convenience functions on top of it. This way, we can avoid duplication of efforts if somebod

Re: GoingNative 2012 to be livestreamed tomorrow

2012-02-03 Thread Peter Alexander
On Friday, 3 February 2012 at 13:18:14 UTC, deadalnix wrote: Le 02/02/2012 03:07, Andrei Alexandrescu a écrit : I'm announcing this here because inevitably D will be mentioned during the panel with Bjarne Stroustrup, Herb Sutter, Hans Boehm, and myself. See you online! http://www.reddit.com/r

Re: D FCGI

2012-02-03 Thread Nick_B
On 4/02/2012 1:31 a.m., James Miller wrote: Before I essentially spam everybody, I'll introduce myself. I am James Miller, and English developer living in New Zealand, I started using D about 2 months ago and am currently working on a large project using it. Hi James where in NZ are you ? why

Re: D FCGI

2012-02-03 Thread James Miller
On 4 February 2012 14:07, Nick_B wrote: > On 4/02/2012 1:31 a.m., James Miller wrote: >> >> Before I essentially spam everybody, I'll introduce myself. I am James >> Miller, and English developer living in New Zealand, I started using D >> about 2 months ago and am currently working on a large pro

Post GoingNative2012 dinner

2012-02-03 Thread Brad Roberts
For those in town at the Going Native conference, it looks like what's working out is that we'll meet at Red Robin in Redmond (at 148th and 520) at about 8pm. Later, Brad

Re: Post GoingNative2012 dinner

2012-02-03 Thread Adam Wilson
On Fri, 03 Feb 2012 17:50:00 -0800, Brad Roberts wrote: For those in town at the Going Native conference, it looks like what's working out is that we'll meet at Red Robin in Redmond (at 148th and 520) at about 8pm. Later, Brad I'll be there! -- Adam Wilson Project Coordinator The Horizon

Re: D FCGI

2012-02-03 Thread Adam D. Ruppe
On Friday, 3 February 2012 at 23:15:19 UTC, James Miller wrote: I haven't looked at any of the files yet, but the fact that you have a set of database modules looks useful. Yeah, I used to use php but wanted to ditch it for D, so everything I needed from php I did in D too, and have since moved

Re: D FCGI

2012-02-03 Thread James Miller
>Two things I noticed your thing didn't do (unless I missed it) >was arrays of parameters and uploaded files. I parse the GET params, POST params, and FCGI Params and store them in _getParams, _postParams and _environment respectively. I also duplicate the GET and POST params into _requestParams (

Re: D FCGI

2012-02-03 Thread Adam D. Ruppe
On Saturday, 4 February 2012 at 04:37:57 UTC, James Miller wrote: I parse the GET params, POST params, and FCGI Params and store them in _getParams, _postParams and _environment Yeah, that works for the vast majority of cases, but suppose you go to: yoursite.com/yourapp?foo=bar&foo=baz That's