Re: Opensourced my web server written in D

2014-02-09 Thread Danny Arends
It was related to the update of std.process, I was using the 'bad way' just building a string and then executing it. Using the old API I could just get back the stdout and stderr as strings. And when the new API came in the old version got deprecated or something else I don't know exactly, it

Re: Opensourced my web server written in D

2014-02-09 Thread Martin Nowak
On 02/09/2014 07:18 PM, Danny Arends wrote: It was related to the update of std.process, The new API is much cleaner and I now use the spawnShell command, which allows to use pipes. This means the server can read data in nice chunks, and that I could tweak the throughput/chunksize based on the

Re: Opensourced my web server written in D

2014-02-07 Thread Martin Nowak
On 02/03/2014 11:02 AM, Danny Arends wrote: I wrote a small web server in D to learn the language. It's not done yet (what software ever is) but I wanted to show it off anyway. As always of-course any feedback is welcome See it here: https://github.com/DannyArends/DaNode Gr, Danny Arends

Re: Opensourced my web server written in D

2014-02-04 Thread Andrei Alexandrescu
On 2/3/14, 2:02 AM, Danny Arends wrote: I wrote a small web server in D to learn the language. It's not done yet (what software ever is) but I wanted to show it off anyway. As always of-course any feedback is welcome See it here: https://github.com/DannyArends/DaNode Gr, Danny Arends

Re: Opensourced my web server written in D

2014-02-04 Thread Danny Arends
Thanks for posting, I just posted it here because I mentioned I wrote it to someone who then wanted a look. So why not open it up for everyone. But the whole reddit attention already got me 10 stars ! yay ! I am planning on making a blog post series out of it describing the components,

Opensourced my web server written in D

2014-02-03 Thread Danny Arends
I wrote a small web server in D to learn the language. It's not done yet (what software ever is) but I wanted to show it off anyway. As always of-course any feedback is welcome See it here: https://github.com/DannyArends/DaNode Gr, Danny Arends http://www.dannyarends.nl

Re: Opensourced my web server written in D

2014-02-03 Thread Rory McGuire
Interesting, are you using any event libraries or did you roll your own? On Mon, Feb 3, 2014 at 12:02 PM, Danny Arends danny.are...@gmail.comwrote: I wrote a small web server in D to learn the language. It's not done yet (what software ever is) but I wanted to show it off anyway. As always

Re: Opensourced my web server written in D

2014-02-03 Thread Danny Arends
Rolled my own, It's purely to learn the language, but it has been tested by running my own website for almost 6 months now. The only dependency is Deimos openSSL for the HTTPS connections. which are still untested and kind of unstable Gr, Danny On Monday, 3 February 2014 at 14:17:22 UTC,