Re: DUB 0.9.13 released

2013-04-29 Thread Jonathan M Davis
On Monday, April 29, 2013 21:27:48 Tyro[17] wrote: > On 4/16/13 5:49 PM, Sönke Ludwig wrote: > > Changes: > > - Support for a new "buildRequirements" field to be able to specify > > > > things like "Don't treat warnings as errors" or "Allow use of > > deprecated features" > > > >

Re: DConf 2013 on twitter

2013-04-29 Thread Ali Çehreli
On 04/29/2013 06:44 PM, Diggory wrote: Just curious if there were any plans to put videos/slideshows from the presentations online after the conference? Yes, that's the plan. Ali

Re: DConf 2013 on twitter

2013-04-29 Thread Diggory
Just curious if there were any plans to put videos/slideshows from the presentations online after the conference?

Re: DUB 0.9.13 released

2013-04-29 Thread Tyro[17]
On 4/16/13 5:49 PM, Sönke Ludwig wrote: Changes: - Support for a new "buildRequirements" field to be able to specify things like "Don't treat warnings as errors" or "Allow use of deprecated features" - A lot of improvements to the VisualD project generator - Some important bug fi

Re: DConf 2013 on twitter

2013-04-29 Thread Walter Bright
On 4/29/2013 11:47 AM, Walter Bright wrote: Use hashtag #dconf to stay up to date during the conference, even if you can't attend. I'll see y'all Wed morning! https://twitter.com/search?q=%23dconf

DConf 2013 on twitter

2013-04-29 Thread Walter Bright
Use hashtag #dconf to stay up to date during the conference, even if you can't attend. I'll see y'all Wed morning!

Re: Crowdfunding article features DConf 2013

2013-04-29 Thread Andrei Alexandrescu
On 4/29/13 10:49 AM, Andrei Alexandrescu wrote: http://workbar.com/tips-tales-of-effective-crowdfunding/ Andrei On reddit technology: http://www.reddit.com/r/technology/comments/1dcmzd/tips_tales_of_effective_crowdfunding/ Vote up! Andrei

Crowdfunding article features DConf 2013

2013-04-29 Thread Andrei Alexandrescu
http://workbar.com/tips-tales-of-effective-crowdfunding/ Andrei

Re: HibernateD and DDBC - ORM and DB abstraction layer for D

2013-04-29 Thread David
Am 29.04.2013 11:25, schrieb Kagamin: > On Friday, 5 April 2013 at 07:32:55 UTC, Vadim Lopatin wrote: >> @Embeddable // required for Embeddable >> class Address { >>String zip; // @Null >>String state; // @Null >>string streetAddress; // @NotNull >> } > > Is it good t

Re: HibernateD and DDBC - ORM and DB abstraction layer for D

2013-04-29 Thread Kagamin
On Friday, 5 April 2013 at 07:32:55 UTC, Vadim Lopatin wrote: @Embeddable // required for Embeddable class Address { String zip; // @Null String state; // @Null string streetAddress; // @NotNull } Is it good to assume string is not null? For most scenarios there's li