Re: Mono-D v0.4.9.9 Bug fixes

2013-02-11 Thread Johannes Pfau
Am Mon, 11 Feb 2013 03:25:25 +0100 schrieb alex i...@alexanderbothe.com: Hi everyone, Just released another bunch of bug fixes solved issues http://mono-d.alexanderbothe.com/?p=840 May I ask you how long you have to wait for phobos stuff to pop up in the completion list after you

Re: Mono-D v0.4.9.9 Bug fixes

2013-02-11 Thread Tobias Pfaff
On Monday, 11 February 2013 at 09:07:59 UTC, Johannes Pfau wrote: Am Mon, 11 Feb 2013 03:25:25 +0100 schrieb alex i...@alexanderbothe.com: Hi everyone, Just released another bunch of bug fixes solved issues http://mono-d.alexanderbothe.com/?p=840 May I ask you how long you have to wait for

vibe.d 0.7.12 released

2013-02-11 Thread Sönke Ludwig
Changes: - Refactored the MongoDB client to better match the actual database structure + range interface for query results (by Dicebot) - A number of important fixes in the HttpClient and ConnectionPool - Correct memory alignment is now enforced in the custom memory allocators (Caused

Re: vibe.d 0.7.12 released

2013-02-11 Thread Jordi Sayol
Al 11/02/13 12:53, En/na Sönke Ludwig ha escrit: Changes: - Refactored the MongoDB client to better match the actual database structure + range interface for query results (by Dicebot) - A number of important fixes in the HttpClient and ConnectionPool - Correct memory alignment is

Re: Mono-D v0.4.9.9 Bug fixes

2013-02-11 Thread alex
On Monday, 11 February 2013 at 09:07:59 UTC, Johannes Pfau wrote: Am Mon, 11 Feb 2013 03:25:25 +0100 schrieb alex i...@alexanderbothe.com: Hi everyone, Just released another bunch of bug fixes solved issues http://mono-d.alexanderbothe.com/?p=840 May I ask you how long you have to wait for

Re: vibe.d 0.7.12 released

2013-02-11 Thread Aleksandar Ruzicic
On Monday, 11 February 2013 at 19:08:16 UTC, FG wrote: Great project -- a flagship example of D's real world application! On 2013-02-11 19:11, Ali Çehreli wrote: same code as Python, translated to D. Of course, the solution that use vibe.d does not have Python's infamous GIL; instead, it

Re: vibe.d 0.7.12 released

2013-02-11 Thread Jacob Carlborg
On 2013-02-11 20:08, FG wrote: Great project -- a flagship example of D's real world application! On 2013-02-11 19:11, Ali Çehreli wrote: same code as Python, translated to D. Of course, the solution that use vibe.d does not have Python's infamous GIL; instead, it comes with parallelism and

Re: vibe.d 0.7.12 released

2013-02-11 Thread Nick Sabalausky
On Mon, 11 Feb 2013 20:11:13 + Russel Winder rus...@winder.org.uk wrote: On Mon, 2013-02-11 at 10:11 -0800, Ali Çehreli wrote: […] I use vibe.d as an example of how useful a tool D is. Recently, somebody has shown me a web server code written in Python: It was in 14 lines, could you

Re: vibe.d 0.7.12 released

2013-02-11 Thread FG
On 2013-02-11 21:11, Russel Winder wrote: Python is not being compared to D here, vibe.d is being compared to what? Flask, Bottle,… Who knows, maybe Python was being compared. You can have a nice HTTP server in Python in 0 lines of code, by running: python -m SimpleHTTPServer :) Issues

Re: vibe.d 0.7.12 released

2013-02-11 Thread FG
On 2013-02-11 21:37, Jacob Carlborg wrote: On 2013-02-11 20:08, FG wrote: I'm struggling with the temptation to move a Python website to vibe.d. What keeps me from doing that are Django templates. Not even because vibe's templates have to be recompiled each time some small markup change is

Re: vibe.d 0.7.12 released

2013-02-11 Thread Nick Sabalausky
On Mon, 11 Feb 2013 20:08:44 +0100 FG h...@fgda.pl wrote: Great project -- a flagship example of D's real world application! On 2013-02-11 19:11, Ali Çehreli wrote: same code as Python, translated to D. Of course, the solution that use vibe.d does not have Python's infamous GIL; instead,

Re: vibe.d 0.7.12 released

2013-02-11 Thread jerro
On Monday, 11 February 2013 at 21:06:41 UTC, FG wrote: On 2013-02-11 21:37, Jacob Carlborg wrote: On 2013-02-11 20:08, FG wrote: I'm struggling with the temptation to move a Python website to vibe.d. What keeps me from doing that are Django templates. Not even because vibe's templates have to

Re: vibe.d 0.7.12 released

2013-02-11 Thread Nick Sabalausky
On Mon, 11 Feb 2013 12:53:55 +0100 Sönke Ludwig slud...@outerproduct.org wrote: Changes: - Refactored the MongoDB client to better match the actual database structure + range interface for query results (by Dicebot) - A number of important fixes in the HttpClient and ConnectionPool

Re: vibe.d 0.7.12 released

2013-02-11 Thread Jacob Carlborg
On 2013-02-11 22:07, FG wrote: The problem I have with those is that they are designed for HTML. What if I wanted to make an email template instead? Erb is like a Ruby preprocessor that can be used for any format. It's used for many things in Ruby on Rails: index.html.erb - Erb

Re: vibe.d 0.7.12 released

2013-02-11 Thread David
Am 11.02.2013 12:53, schrieb Sönke Ludwig: Changes: - Refactored the MongoDB client to better match the actual database structure + range interface for query results (by Dicebot) - A number of important fixes in the HttpClient and ConnectionPool - Correct memory alignment is now

Re: vibe.d 0.7.12 released

2013-02-11 Thread Dicebot
I have considered writing and proposing one, but it is a very low priority to me now, sorry. Should be not that difficult considering driver for MySQL can be used as an example ( http://registry.vibed.org/packages/mysql-native ), just time-consuming.

Re: vibe.d 0.7.12 released

2013-02-11 Thread Sönke Ludwig
Am 11.02.2013 20:08, schrieb FG: So let me use this opportunity to ask you: is somebody working on other template systems for vibe.d already or shall I get involved myself? I'm thinking about something similar to this, syntax-wise: http://jinja.pocoo.org/ I personally also wanted to