Re: Remus

2012-10-10 Thread Jacob Carlborg
On 2012-10-09 21:10, Namespace wrote: My next version will contain the elvis operator: [code] Foo obj = otherObj.get() ?: null; if otherObj.get() is _not_ null, it will assign to obj, otherwise obj will be assigned with null. [/code] Will it support this syntax: Foo obj; obj ?=

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Jacob Carlborg
On 2012-10-10 08:38, Nick Sabalausky wrote: Some stuff I thought needed to be said and shared: http://semitwist.com/articles/article/view/dispelling-common-d-myths Nice, read. You might want to mention that the DMD front end is licensed under GPL as well. -- /Jacob Carlborg

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Jacob Carlborg
On 2012-10-10 08:38, Nick Sabalausky wrote: Some stuff I thought needed to be said and shared: http://semitwist.com/articles/article/view/dispelling-common-d-myths Personally, I would have pointed out that there are some other useful modules in Tango that Phobos still is missing,

Re: Remus

2012-10-10 Thread Namespace
On Wednesday, 10 October 2012 at 07:06:54 UTC, Jacob Carlborg wrote: On 2012-10-09 21:10, Namespace wrote: My next version will contain the elvis operator: [code] Foo obj = otherObj.get() ?: null; if otherObj.get() is _not_ null, it will assign to obj, otherwise obj will be assigned with

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Simen Kjaeraas
On 2012-10-10 08:10, Nick Sabalausky wrote: Some stuff I thought needed to be said and shared: http://semitwist.com/articles/article/view/dispelling-common-d-myths Now on Reddit: http://www.reddit.com/r/programming/comments/118y4m/dispelling_common_d_myths/ -- Simen

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Adam D. Ruppe
On Wednesday, 10 October 2012 at 13:13:21 UTC, Jacob Carlborg wrote: It seems like most ddoc macros are not expanded. Right, none are. I have the macro expander from dmd ported to D now, but I'm not sure I actually want to use it yet, especially since I'll probably just link back to the

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Simen Kjaeraas
On 2012-10-10, 14:28, Adam D. Ruppe wrote: Another thing I'm (slowly) working toward for the dead D projects thing is opening my dpldocs.info to third party submissions. It actually already kinda works: http://dpldocs.info/search/index but isn't fully done yet. I read that as diplodocus.

Re: Article: Dispelling Common D Myths

2012-10-10 Thread Adam D. Ruppe
On Wednesday, 10 October 2012 at 13:41:38 UTC, Simen Kjaeraas wrote: I read that as diplodocus. Is that intended? :p I wish!

Re: Remus

2012-10-10 Thread David
Am 10.10.2012 07:32, schrieb Namespace: And you ask for what namespaces are usefull? Aren't you miss them? I do, and so I implement them. You can already write namespaces in D, but you must use a (mixin) template (so you have these ugly parents) and for using you have to write: alias

Re: ddox documentation generator

2012-10-10 Thread Mr. Anonymous
On Sunday, 7 October 2012 at 16:18:27 UTC, Sönke Ludwig wrote: The documentation generator used for vibed.org (e.g. http://vibed.org/api/vibe.core.file/FileStream) is now available as a stand-alone project: https://github.com/rejectedsoftware/ddox also available as a VPM module:

Re: Remus

2012-10-10 Thread Namespace
On Wednesday, 10 October 2012 at 15:19:22 UTC, David wrote: Am 10.10.2012 07:32, schrieb Namespace: And you ask for what namespaces are usefull? Aren't you miss them? I do, and so I implement them. You can already write namespaces in D, but you must use a (mixin) template (so you have these

Re: Remus

2012-10-10 Thread Namespace
On Wednesday, 10 October 2012 at 13:14:22 UTC, Jacob Carlborg wrote: On 2012-10-10 09:10, Namespace wrote: You mean: [code] Foo obj; if (obj is null) { obj = otherObj.get(); } [/code] ? Interesting point. Until now this isn't supported but I will think about it. Exactly, most language

Re: Remus

2012-10-10 Thread Leandro Lucarella
David, el 10 de October a las 16:55 me escribiste: Am 10.10.2012 07:32, schrieb Namespace: And you ask for what namespaces are usefull? Aren't you miss them? I do, and so I implement them. You can already write namespaces in D, but you must use a (mixin) template (so you have these ugly

news.digitalmars.com server has a wrong date

2012-10-10 Thread Leandro Lucarella
I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any

Re: news.digitalmars.com server has a wrong date

2012-10-10 Thread Andrei Alexandrescu
On 10/10/12 4:29 PM, Leandro Lucarella wrote: I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining

Re: news.digitalmars.com server has a wrong date

2012-10-10 Thread nazriel
On Wednesday, 10 October 2012 at 21:38:53 UTC, Andrei Alexandrescu wrote: On 10/10/12 4:29 PM, Leandro Lucarella wrote: I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the

Re: Dpaste - online compiler and collaboration tool dedicated to D Programming Language.

2012-10-10 Thread MattCoder
On Wednesday, 4 July 2012 at 10:49:12 UTC, nazriel wrote: Greetings. I would like to share with you, Beta version of http://dpaste.dzfl.pl/ Awesome tool and I usually use at work! Thanks.

Re: news.digitalmars.com server has a wrong date

2012-10-10 Thread Leandro Lucarella
Andrei Alexandrescu, el 10 de October a las 17:14 me escribiste: On 10/10/12 4:29 PM, Leandro Lucarella wrote: I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set

A tiny, pure D build system.

2012-10-10 Thread alexhairyman
I'm just calling it dbuild, but there is another project called dbuilder, so I may rename it to 'DB'. It can be found on github at: https://github.com/alexhairyman/dbuild Anyways, this is a pure D way to generate only the necessary command line command for compiling D code to various targets.