Re: [OT] My C++ talk at GoingNative 2013

2013-09-20 Thread Olivier Pisano
On Thursday, 19 September 2013 at 22:56:55 UTC, Justin Whear 
wrote:

On Thu, 19 Sep 2013 14:31:28 -0700, Walter Bright wrote:

Yessir: http://imgur.com/W5AMy0P


Thank you so much!


Re: [OT] My C++ talk at GoingNative 2013

2013-09-20 Thread Justin Whear
On Thu, 19 Sep 2013 22:56:55 +, Justin Whear wrote:

 On Thu, 19 Sep 2013 14:31:28 -0700, Walter Bright wrote:
 
 On 9/18/2013 1:23 AM, Olivier Pisano wrote:
 
 Classic Andrei! :-)
 
 Should zoom in on that and make a gif!
 
 Yessir: http://imgur.com/W5AMy0P

I think I'm going to start posting simply this in response to any 
statement that I find dubious.


Re: [OT] My C++ talk at GoingNative 2013

2013-09-20 Thread Tobias Pankrath

On Friday, 20 September 2013 at 15:52:35 UTC, Justin Whear wrote:

On Thu, 19 Sep 2013 22:56:55 +, Justin Whear wrote:


On Thu, 19 Sep 2013 14:31:28 -0700, Walter Bright wrote:


On 9/18/2013 1:23 AM, Olivier Pisano wrote:

Classic Andrei! :-)

Should zoom in on that and make a gif!


Yessir: http://imgur.com/W5AMy0P


I think I'm going to start posting simply this in response to 
any

statement that I find dubious.


It has quite some meme potential ^^


Re: [OT] My C++ talk at GoingNative 2013

2013-09-20 Thread Andrei Alexandrescu

On 9/19/13 3:56 PM, Justin Whear wrote:

On Thu, 19 Sep 2013 14:31:28 -0700, Walter Bright wrote:


On 9/18/2013 1:23 AM, Olivier Pisano wrote:

On Friday, 13 September 2013 at 06:51:52 UTC, deadalnix wrote:


There is 2 ask us anything. Can you tell us which one and
approximately when ?


Yes, the first one (
http://channel9.msdn.com/Events/GoingNative/2013/Interactive-Panel-Ask-

Us-Anything

) around 01:14:20.


Classic Andrei! :-)

Should zoom in on that and make a gif!


Yessir: http://imgur.com/W5AMy0P


Awesome. My coworkers added that to our panoply of visual comments in 
our review tool (Phabricator).


Now any code reviewer could insert the word skeptical to insert that 
image in a review. Fits how I feel about some code, notably my own :o).


Thanks!

Andrei


Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-20 Thread Gary Willoughby
On Thursday, 12 September 2013 at 10:34:56 UTC, Sönke Ludwig 
wrote:

Major changes since 0.9.16:

 - The registry is now officially located at 
http://code.dlang.org


What's the procedure for devs to add packages to the registry?


Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-20 Thread Gary Willoughby

On Friday, 20 September 2013 at 18:26:16 UTC, Dicebot wrote:
On Friday, 20 September 2013 at 18:19:22 UTC, Gary Willoughby 
wrote:
On Thursday, 12 September 2013 at 10:34:56 UTC, Sönke Ludwig 
wrote:

Major changes since 0.9.16:

- The registry is now officially located at 
http://code.dlang.org


What's the procedure for devs to add packages to the registry?


register - add :)

There is no verification or moderation right now, it is open to 
community.


Ah, right thanks.


Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-20 Thread Dicebot
On Friday, 20 September 2013 at 18:19:22 UTC, Gary Willoughby 
wrote:
On Thursday, 12 September 2013 at 10:34:56 UTC, Sönke Ludwig 
wrote:

Major changes since 0.9.16:

- The registry is now officially located at 
http://code.dlang.org


What's the procedure for devs to add packages to the registry?


register - add :)

There is no verification or moderation right now, it is open to 
community.


Re: I'm porting some go code to D

2013-09-20 Thread Sean Kelly
On Aug 24, 2013, at 1:59 AM, David d...@dav1d.de wrote:

 Daemonic Threads often end with a segfault, so if your main thread
 exists, the other threads will probably segfault.

By default, sure.  But with daemon threads you really want to have some kind of 
shutdown mechanism inside a static dtor somewhere.  The goal is more to have 
threads that don't implicitly block app shutdown.