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 to assume string is not null? For most scenarios there's
 little difference between null and empty string.

Null blows up your code,  doesn't. Also it's a SQL thing, NotNull
must be initialized, when the row is filled.


Crowdfunding article features DConf 2013

2013-04-29 Thread Andrei Alexandrescu

http://workbar.com/tips-tales-of-effective-crowdfunding/

Andrei


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


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: 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


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 fixes


Change log:
   https://github.com/rejectedsoftware/dub/blob/master/CHANGELOG.md

Download:
   http://registry.vibed.org/download



Probably a stupid question but can DUB be used to install DMD? 
Instructions please.


Thanks


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: 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: 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

- A lot of improvements to the VisualD project generator

- Some important bug fixes
  
  Change log:
 https://github.com/rejectedsoftware/dub/blob/master/CHANGELOG.md
  
  Download:
 http://registry.vibed.org/download
 
 Probably a stupid question but can DUB be used to install DMD?
 Instructions please.

There is no dub build for dmd. dmd is built using makefiles, and it really 
needs the druntime, Phobos, and tools projects as well (all of which build 
with makefiles) - especially if you're going to install it - and dub does not 
currently support building with makefiles or including other projects like 
that. It also doesn't support installing anything AFAIK. It just builds stuff 
with the bonus that it'll download and build the dependencies for you first. It 
may be possible for dub to do all of that in the future, but not now.

- Jonathan M Davis