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

2013-09-21 Thread Ali Çehreli
On 09/09/2013 09:43 AM, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei Great talk indeed! I am late to the party so instead of commenting on Reddit I will write here. There are two points made in the ta

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

2013-09-21 Thread Nick Sabalausky
On Fri, 20 Sep 2013 10:50:23 -0700 Andrei Alexandrescu wrote: > On 9/19/13 3:56 PM, Justin Whear wrote: > > > > 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

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

2013-09-20 Thread Joakim
On Friday, 20 September 2013 at 16:09:46 UTC, Tobias Pankrath wrote: 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:

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

2013-09-20 Thread Andrei Alexandrescu
, 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

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:

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

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-19 Thread Walter Bright
On 9/19/2013 3:56 PM, Justin Whear wrote: Yessir: http://imgur.com/W5AMy0P !!

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

2013-09-19 Thread Justin Whear
? >> >> 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

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

2013-09-19 Thread Walter Bright
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

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

2013-09-18 Thread Gary Willoughby
On Wednesday, 18 September 2013 at 10:18:43 UTC, growler wrote: Watching your second talk on tuples I couldn't help thinking how much easier templates are in D. When reading C++ I find I have to make a context switch between run-time and compile-time thinking. It's quite jarring. In D, however,

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

2013-09-18 Thread growler
On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei Just wanted to say thanks for posting the link, it was a great talk. Of the other talks I especially enjoyed t

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

2013-09-18 Thread Olivier Pisano
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.

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

2013-09-14 Thread Jacob Carlborg
On 2013-09-13 09:40, Mathias LANG wrote: It may be a trend, but I hope it will never become D's official approach, because it doesn't scale. This would left out all the people that use the object-file based approach (and related tools, like Makefiles), which is dominant in the Linux world, and i

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

2013-09-13 Thread Mathias LANG
I do have a question regarding the talk's section on devirtualization. As a language that imposes virtual methods for classes, how well does D play when it comes to devirtualization? And on a side note, does D have a different way of implementing virtual methods than most C++ compilers do? In

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

2013-09-12 Thread deadalnix
On Wednesday, 11 September 2013 at 05:27:35 UTC, Olivier Pisano wrote: On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei This talks are amazing. I learned a lot.

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

2013-09-12 Thread deadalnix
On Friday, 13 September 2013 at 06:24:26 UTC, Jacob Carlborg wrote: On 2013-09-10 14:54, Olivier Grant wrote: First of all, I very much enjoyed the talk. It was as interesting as it was entertaining. Yes, I enjoyed it as well. I do have a question regarding the talk's section on devirtualiz

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

2013-09-12 Thread Jacob Carlborg
On 2013-09-10 14:54, Olivier Grant wrote: First of all, I very much enjoyed the talk. It was as interesting as it was entertaining. Yes, I enjoyed it as well. I do have a question regarding the talk's section on devirtualization. As a language that imposes virtual methods for classes, how wel

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

2013-09-12 Thread Sean Kelly
On Sep 12, 2013, at 2:46 PM, Iain Buclaw wrote: > > On Sep 12, 2013 9:16 PM, "Joseph Rushton Wakeling" > wrote: > > > > On Tuesday, 10 September 2013 at 13:08:29 UTC, Iain Buclaw wrote: > >> > >> All class methods are virtual by default in D, unless declared 'final'. > > > > > > There was an i

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

2013-09-12 Thread Sean Kelly
On Sep 12, 2013, at 2:46 PM, Iain Buclaw wrote: > > Not sure how long ago that was, but dconf everyone agreed to disagree and > left it at "we're not changing it". Here's a portion of the discussion where Walter seemed to change his mind: http://forum.dlang.org/thread/yzsqwejxqlnzryhrk...@foru

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

2013-09-12 Thread Iain Buclaw
On Sep 12, 2013 9:16 PM, "Joseph Rushton Wakeling" < joseph.wakel...@webdrake.net> wrote: > > On Tuesday, 10 September 2013 at 13:08:29 UTC, Iain Buclaw wrote: >> >> All class methods are virtual by default in D, unless declared 'final'. > > > There was an intense discussion a while back which ende

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

2013-09-12 Thread Joseph Rushton Wakeling
On Tuesday, 10 September 2013 at 13:08:29 UTC, Iain Buclaw wrote: All class methods are virtual by default in D, unless declared 'final'. There was an intense discussion a while back which ended in (I think) a decision by Walter to switch to final-by-default, but there has so far been no prac

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

2013-09-10 Thread Olivier Pisano
On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei This talks are amazing. I learned a lot. Thank you all guys for your dedication and pedagogy. BTW, I really li

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

2013-09-10 Thread PauloPinto
On Tuesday, 10 September 2013 at 13:20:18 UTC, Iain Buclaw wrote: On 10 September 2013 11:10, deadalnix wrote: On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei

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

2013-09-10 Thread Iain Buclaw
On 10 September 2013 11:10, deadalnix wrote: > On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: >> >> >> http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ >> >> Andrei > > > So I'll jump in as I've seen the conf before that

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

2013-09-10 Thread Iain Buclaw
On 10 September 2013 13:54, Olivier Grant wrote: > First of all, I very much enjoyed the talk. It was as interesting as it was > entertaining. > > I do have a question regarding the talk's section on devirtualization. As a > language that imposes virtual methods for classes, how well does D play w

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

2013-09-10 Thread Olivier Grant
First of all, I very much enjoyed the talk. It was as interesting as it was entertaining. I do have a question regarding the talk's section on devirtualization. As a language that imposes virtual methods for classes, how well does D play when it comes to devirtualization? And on a side note,

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

2013-09-10 Thread deadalnix
On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei So I'll jump in as I've seen the conf before that post. It is really worthwhile to watch. Quite informative on t

[OT] My C++ talk at GoingNative 2013

2013-09-09 Thread Andrei Alexandrescu
http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei

Re: GoingNative 2013

2013-08-25 Thread Adam Wilson
On Mon, 29 Jul 2013 15:12:39 -0700, Walter Bright wrote: http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all there! (P.S. It's entirely possible that I may get m

Re: GoingNative 2013

2013-08-25 Thread Adam Wilson
On Sun, 25 Aug 2013 13:41:00 -0700, Adam Wilson wrote: On Mon, 29 Jul 2013 15:12:39 -0700, Walter Bright wrote: http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all

Re: GoingNative 2013

2013-07-30 Thread Adam Wilson
On Tue, 30 Jul 2013 15:57:47 -0700, Walter Bright wrote: On 7/30/2013 1:14 PM, Adam Wilson wrote: Since I've never been before, I would like to know if there is a place that I can setup a laptop in the lecture hall. I *really* want to go to this, but I have product launch two weeks prior

Re: GoingNative 2013

2013-07-30 Thread Andrei Alexandrescu
On 7/30/13 1:14 PM, Adam Wilson wrote: On Mon, 29 Jul 2013 15:12:39 -0700, Walter Bright wrote: http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all there! (P.S. It'

Re: GoingNative 2013

2013-07-30 Thread Walter Bright
On 7/30/2013 1:14 PM, Adam Wilson wrote: Since I've never been before, I would like to know if there is a place that I can setup a laptop in the lecture hall. I *really* want to go to this, but I have product launch two weeks prior at VSLive (also at MSFT) and it may need emergency support. Mo

Re: GoingNative 2013

2013-07-30 Thread Adam Wilson
On Mon, 29 Jul 2013 15:12:39 -0700, Walter Bright wrote: http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all there! (P.S. It's entirely possible that I may get m

Re: GoingNative 2013

2013-07-29 Thread Walter Bright
On 7/29/2013 7:25 PM, Manu wrote: On 30 July 2013 08:12, Walter Bright mailto:newshou...@digitalmars.com>> wrote: http://channel9.msdn.com/__Events/GoingNative/2013 <http://channel9.msdn.com/Events/GoingNative/2013> The last one was a lot of fun, so I signed up for t

Re: GoingNative 2013

2013-07-29 Thread Manu
On 30 July 2013 08:12, Walter Bright wrote: > http://channel9.msdn.com/**Events/GoingNative/2013<http://channel9.msdn.com/Events/GoingNative/2013> > > The last one was a lot of fun, so I signed up for this one, too. Note that > Andrei is a speaker! Recommended. See y'al

Re: GoingNative 2013

2013-07-29 Thread Walter Bright
On 7/29/2013 5:53 PM, Brad Anderson wrote: They said they may not live stream it this year like they did last year. That's a shame because it was a lot of fun heckling Andrei in #d :P. Live streaming is fun because some of the best questions come from twitter.

Re: GoingNative 2013

2013-07-29 Thread Brad Anderson
On Monday, 29 July 2013 at 22:12:40 UTC, Walter Bright wrote: http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all there! (P.S. It's entirely possible that I

GoingNative 2013

2013-07-29 Thread Walter Bright
http://channel9.msdn.com/Events/GoingNative/2013 The last one was a lot of fun, so I signed up for this one, too. Note that Andrei is a speaker! Recommended. See y'all there! (P.S. It's entirely possible that I may get my mythical '72 Dodge running in time for this, and I can