Re: D needs...

2015-05-12 Thread ponce via Digitalmars-d-announce
On Monday, 11 May 2015 at 11:59:02 UTC, Namespace wrote: Inspired by ponce idioms list for D I've set up something similar. There are some themes in D which come up regulary and are discussed to the vomit. If something is agreed, it gets forgotten sometimes and the theme disappears into

Re: D needs...

2015-05-12 Thread Daniel Kozák via Digitalmars-d-announce
On Tue, 12 May 2015 06:39:09 + ponce via Digitalmars-d-announce digitalmars-d-announce@puremagic.com wrote: On Monday, 11 May 2015 at 11:59:02 UTC, Namespace wrote: Inspired by ponce idioms list for D I've set up something similar. There are some themes in D which come up regulary

Re: D needs...

2015-05-12 Thread Namespace via Digitalmars-d-announce
On Tuesday, 12 May 2015 at 06:39:10 UTC, ponce wrote: On Monday, 11 May 2015 at 11:59:02 UTC, Namespace wrote: Inspired by ponce idioms list for D I've set up something similar. There are some themes in D which come up regulary and are discussed to the vomit. If something is agreed, it gets

Re: DlangIDE

2015-05-12 Thread Vadim Lopatin via Digitalmars-d-announce
On Friday, 8 May 2015 at 17:26:18 UTC, Chris wrote: On Tuesday, 10 March 2015 at 10:39:16 UTC, Vadim Lopatin wrote: On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI.

Re: DlangIDE

2015-05-12 Thread JohnnyK via Digitalmars-d-announce
On Friday, 6 February 2015 at 14:03:07 UTC, Vadim Lopatin wrote: Hello, I'm working on cross-platform D language IDE - DlangIDE. It's written in D using DlangUI based GUI. Project on GitHub: https://github.com/buggins/dlangide It's in alpha stage but already allows: * Open DUB based projects

Re: Calypso: Direct and full interfacing to C++

2015-05-12 Thread Kelly via Digitalmars-d-announce
Well the first fully working example of a large library is finally working with Calypso. Elie has managed to get a Qt5 demo program to compile and run!! The demo is a D version of the Qt5 Widgets demo. This is a simple window with a pseudo address book app. The demo uses a D class inheriting

Re: D needs...

2015-05-12 Thread via Digitalmars-d-announce
On Monday, 11 May 2015 at 17:49:32 UTC, Namespace wrote: I've read DIP69 and there were a few lines about scope ref. But I'm not sure whether I understand everything correct (because there is no concrete application example for my case): will DIP69 create the possibility to pass rvalues and

Re: D needs...

2015-05-12 Thread Namespace via Digitalmars-d-announce
On Tuesday, 12 May 2015 at 09:31:13 UTC, Marc Schütz wrote: On Monday, 11 May 2015 at 17:49:32 UTC, Namespace wrote: I've read DIP69 and there were a few lines about scope ref. But I'm not sure whether I understand everything correct (because there is no concrete application example for my

Re: DOtherSide: QML bindings for both D and Nim

2015-05-12 Thread filcuc via Digitalmars-d-announce
On Monday, 11 May 2015 at 05:46:58 UTC, Suliman wrote: Could you add examples of usage this binding on Windows please. This is part of the overall goal to write some basic documentation for D (i've already done it for Nim). However if you're familiar with the basic cmake workflow you should

Re: DWT 64bit support

2015-05-12 Thread JohnnyK via Digitalmars-d-announce
On Sunday, 10 May 2015 at 16:11:41 UTC, Jacob Carlborg wrote: I would like to announce that DWT recently got support for 64bit, both on Linux and Windows. Compiling for 32bit COFF should also work on Windows. All this work was done by kntroh and Jesse Phillips, thank you very much. This is

Re: This Week in D 16: microcontroller, andoid, std.allocator, lazy import trick

2015-05-12 Thread JohnnyK via Digitalmars-d-announce
On Monday, 11 May 2015 at 03:09:53 UTC, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/may-10.html https://twitter.com/adamdruppe/status/597598994227924992 The tip could probably use a rewrite in editing, but I'm out of time again tonight and I hope I got the point across anyway. As

Re: D needs...

2015-05-12 Thread Andrei Alexandrescu via Digitalmars-d-announce
On 5/12/15 3:09 AM, Namespace wrote: On Tuesday, 12 May 2015 at 09:31:13 UTC, Marc Schütz wrote: On Monday, 11 May 2015 at 17:49:32 UTC, Namespace wrote: I've read DIP69 and there were a few lines about scope ref. But I'm not sure whether I understand everything correct (because there is no

Re: D needs...

2015-05-12 Thread Namespace via Digitalmars-d-announce
Knee-jerk response: if no return attribute on a function it should be safe to bind rvalues to ref parameters. Of course that's impractical as a default so explicit auto ref would be needed. -- Andrei yay, I'm glad to hear that. :)