Re: Vision document for H1 2018

2018-03-13 Thread rumbu via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 23:20:22 UTC, Nick Sabalausky (Abscissa) wrote: On 03/11/2018 11:31 PM, Laeeth Isharc wrote: C# slices look great. I wonder if that might open the door for D on the CLR. I know that was attempted once a long way back, but was deemed infeasible and abandoned.

Re: Vibe.d web interface tutorial

2018-03-13 Thread Nick Sabalausky (Abscissa) via Digitalmars-d-announce
On 03/13/2018 09:42 AM, Daniel Kozak wrote: Yes PHP is always to blame :) From my archives: https://semitwist.com/articles/article/view/10-fun-facts-about-php

Re: Vision document for H1 2018

2018-03-13 Thread Nick Sabalausky (Abscissa) via Digitalmars-d-announce
On 03/11/2018 11:31 PM, Laeeth Isharc wrote: C# slices look great. I wonder if that might open the door for D on the CLR. I know that was attempted once a long way back, but was deemed infeasible and abandoned. IIRC, inability to implement slices was the main blocker.

Re: Vibe.d web interface tutorial

2018-03-13 Thread aberba via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 10:12:24 UTC, Steven Schveighoffer wrote: On 3/9/18 11:34 AM, aberba wrote: On Friday, 9 March 2018 at 16:32:28 UTC, aberba wrote: New blog post for the learning audience aberba.com/2018/using-vibe-d-web-interface

Re: Vibe.d web interface tutorial

2018-03-13 Thread aberba via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 13:42:20 UTC, Daniel Kozak wrote: Yes PHP is always to blame :) I can testify I've never written PHP code as clean as yours above. Ha ha. Even when I used PHP heavily. I suck a lil bit at naming things. I really loved PHP but ... vibe.d happened. On Tue, Mar

Re: LDC 1.8.0

2018-03-13 Thread kinke via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 15:35:02 UTC, Matthias Klumpp wrote: Unfortunately, we ship both - while Debian packages only use the shared libraries, and we want the shared libraries to be default, we also want to make the static ones available for people who want to opt into that for software

Re: The D Language Foundation at Open Collective

2018-03-13 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 15:54:56 UTC, Jonathan M Davis wrote: On Tuesday, March 13, 2018 15:26:24 Martin Tschierschke via Digitalmars-d- announce wrote: [...] BTW, opencollective.com has a link to windfair.net listed in your backer profile, but it links via https, and windfair.net seems

Re: The D Language Foundation at Open Collective

2018-03-13 Thread Jonathan M Davis via Digitalmars-d-announce
On Tuesday, March 13, 2018 15:26:24 Martin Tschierschke via Digitalmars-d- announce wrote: > On Monday, 12 March 2018 at 14:32:34 UTC, Mike Parker wrote: > > Today, the D Language Foundation has launched a page at Open > > Collective: > > > > https://opencollective.com/dlang. > > > > This brings

Re: The D Language Foundation at Open Collective

2018-03-13 Thread Mike Parker via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 15:26:24 UTC, Martin Tschierschke wrote: The Website needs the link, too!: https://dlang.org/foundation/donate.html Yes, there's a PR for it waiting to be merged. https://github.com/dlang/dlang.org/pull/2272

Re: LDC 1.8.0

2018-03-13 Thread Matthias Klumpp via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 10:27:49 UTC, kinke wrote: On Tuesday, 13 March 2018 at 01:52:48 UTC, Matthias Klumpp wrote: The new and enforced "-shared" suffixes for the druntime and phobos shared libraries are a bit annoying (especially since this is a breaking change), but at least at Debian

Re: The D Language Foundation at Open Collective

2018-03-13 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 12 March 2018 at 14:32:34 UTC, Mike Parker wrote: Today, the D Language Foundation has launched a page at Open Collective: https://opencollective.com/dlang. This brings some transparency to the process and opens new opportunities for how the Foundation handles donations. The

Re: Vibe.d web interface tutorial

2018-03-13 Thread Daniel Kozak via Digitalmars-d-announce
Yes PHP is always to blame :) On Tue, Mar 13, 2018 at 1:55 PM, Steven Schveighoffer via Digitalmars-d-announce wrote: > On 3/13/18 6:22 AM, Daniel Kozak wrote: > >> On contrary I really hate that :D. >> Because of this: >> >> HTTP methodRecognized prefixes

Re: Vibe.d web interface tutorial

2018-03-13 Thread Steven Schveighoffer via Digitalmars-d-announce
On 3/13/18 6:22 AM, Daniel Kozak wrote: On contrary I really hate that :D. Because of this: HTTP methodRecognized prefixes GETget, query PUTset, put POSTadd, create, post DELETEremove, erase, delete PATCHupdate, patch I am calling vibed from PHP and I need to tweak my curl for every request

Re: The D Language Foundation at Open Collective

2018-03-13 Thread M.M. via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 09:48:10 UTC, rikki cattermole wrote: On 13/03/2018 10:39 PM, M.M. wrote: On Monday, 12 March 2018 at 14:37:40 UTC, rikki cattermole wrote: Can you guys add another donation package, which is basically pay what you want towards a more long term issue? To

Re: LDC 1.8.0

2018-03-13 Thread kinke via Digitalmars-d-announce
On Tuesday, 13 March 2018 at 01:52:48 UTC, Matthias Klumpp wrote: The new and enforced "-shared" suffixes for the druntime and phobos shared libraries are a bit annoying (especially since this is a breaking change), but at least at Debian we'll follow upstream's defaults on that (it gives

Re: Vibe.d web interface tutorial

2018-03-13 Thread Daniel Kozak via Digitalmars-d-announce
On contrary I really hate that :D. Because of this: HTTP method Recognized prefixes GET get, query PUT set, put POST add, create, post DELETE remove, erase, delete PATCH update, patch I am calling vibed from PHP and I need to tweak my curl for every request baceuse of this :D public function

Re: Vibe.d web interface tutorial

2018-03-13 Thread Steven Schveighoffer via Digitalmars-d-announce
On 3/9/18 11:34 AM, aberba wrote: On Friday, 9 March 2018 at 16:32:28 UTC, aberba wrote: New blog post for the learning audience aberba.com/2018/using-vibe-d-web-interface http://aberba.com/2018/using-vibe-d-web-interface Very nice! Although this is missing one of my favorite vibe.d web

Re: The D Language Foundation at Open Collective

2018-03-13 Thread rikki cattermole via Digitalmars-d-announce
On 13/03/2018 10:39 PM, M.M. wrote: On Monday, 12 March 2018 at 14:37:40 UTC, rikki cattermole wrote: Can you guys add another donation package, which is basically pay what you want towards a more long term issue? To incentivize fixing. Monetary wise I shouldn't donate but I do care about

Re: The D Language Foundation at Open Collective

2018-03-13 Thread M.M. via Digitalmars-d-announce
On Monday, 12 March 2018 at 14:37:40 UTC, rikki cattermole wrote: Can you guys add another donation package, which is basically pay what you want towards a more long term issue? To incentivize fixing. Monetary wise I shouldn't donate but I do care about shared library support enough that I