Re: FF Plugins (Was: DConf 2013 Opening Keynote by Walter Bright: video and slides available)

2013-05-10 Thread Colin Grogan
On Thursday, 9 May 2013 at 18:49:17 UTC, Nick Sabalausky wrote: On Thu, 09 May 2013 18:35:08 +0200 Rob T al...@ucora.com wrote: Snipidy snip Damn you all, now I have to go back to firefox...

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread JN
Can't wait for Manu's slides/video to come up :) I have to disagree with some of the points in the keynote though. The part with algorithm in D example, I don't know but map(a = a.idup) isn't exactly obvious. About the scope vs no-scope - it'd be interesting to see how try-finally version

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread Regan Heath
On Fri, 10 May 2013 11:45:21 +0100, JN 666to...@wp.pl wrote: Can't wait for Manu's slides/video to come up :) I want them all! :D I have to disagree with some of the points in the keynote though. The part with algorithm in D example, I don't know but map(a = a.idup) isn't exactly

DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Andrei Alexandrescu
Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 8:08 AM, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Vote up! http://www.reddit.com/r/programming/comments/1e2boo/dconf_2013_day_1_talk_2_copy_and_move_semantics/ Andrei

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Iain Buclaw
On 10 May 2013 13:08, Andrei Alexandrescu seewebsiteforem...@erdani.orgwrote: Enjoy! https://www.youtube.com/watch?**v=mPr2UspS0fEhttps://www.youtube.com/watch?v=mPr2UspS0fE Andrei Are we releasing one talk every couple of days? -- Iain Buclaw *(p e ? p++ : p) = (c 0x0f) + '0';

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread David
Am 10.05.2013 14:11, schrieb Andrei Alexandrescu: On 5/10/13 8:08 AM, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Vote up! http://www.reddit.com/r/programming/comments/1e2boo/dconf_2013_day_1_talk_2_copy_and_move_semantics/ Andrei Onto

Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread deadalnix
http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it.

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Jacob Carlborg
On 2013-05-10 14:15, Iain Buclaw wrote: Are we releasing one talk every couple of days? We want all talks right now :) -- /Jacob Carlborg

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread John Colvin
On Friday, 10 May 2013 at 12:32:50 UTC, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. Fancy some proof-reading again?

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread Jeff Nowakowski
On 05/08/2013 05:41 PM, Andrei Alexandrescu wrote: VOTE UP!!! http://www.reddit.com/r/programming/comments/1dyinq/dconf_2013_opening_keynote_by_walter_bright/ I have to laugh at the reddit id: 1dying :)

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread John Colvin
On Friday, 10 May 2013 at 12:47:17 UTC, John Colvin wrote: On Friday, 10 May 2013 at 12:32:50 UTC, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Dmitry Olshansky
10-May-2013 16:32, deadalnix пишет: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. Neat but somewhat limited. E.g. this is exactly the

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread deadalnix
On Friday, 10 May 2013 at 13:04:58 UTC, John Colvin wrote: On Friday, 10 May 2013 at 12:47:17 UTC, John Colvin wrote: On Friday, 10 May 2013 at 12:32:50 UTC, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread deadalnix
On Friday, 10 May 2013 at 13:11:37 UTC, Dmitry Olshansky wrote: E.g. this is exactly the same switch madness we sought to avoid: The article don't plan to avoid this, but to make the tagged union safe. I agree this is a plus, but didn't really took time to make that work. void

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread deadalnix
On Friday, 10 May 2013 at 13:51:11 UTC, deadalnix wrote: Is this on Reddit yet? No, feel free to put it if you think it is appropriate ! http://www.reddit.com/r/programming/comments/1e2h99/type_safe_tagged_union_in_d/ Someone else did.

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 8:15 AM, Iain Buclaw wrote: On 10 May 2013 13:08, Andrei Alexandrescu seewebsiteforem...@erdani.org mailto:seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?__v=mPr2UspS0fE https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Are we

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 8:32 AM, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. Article is good, could use a few copyediting fixes

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread John Colvin
On Friday, 10 May 2013 at 13:51:11 UTC, deadalnix wrote: Awesome, I'll update the article. Andrei pointed out that the title needed fixing: I suggest: Type-safe tagged unions in the D programming language. Type-safe tagged unions in D.

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread John Colvin
On Friday, 10 May 2013 at 14:37:49 UTC, Andrei Alexandrescu wrote: On 5/10/13 8:32 AM, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread Simen Kjaeraas
On Fri, 10 May 2013 15:00:44 +0200, Jeff Nowakowski j...@dilacero.org wrote: On 05/08/2013 05:41 PM, Andrei Alexandrescu wrote: VOTE UP!!! http://www.reddit.com/r/programming/comments/1dyinq/dconf_2013_opening_keynote_by_walter_bright/ I have to laugh at the reddit id: 1dying :)

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Artur Skawina
On 05/10/13 14:32, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. Nothing 'shameless' about it. But Real Programmers

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread deadalnix
On Friday, 10 May 2013 at 14:53:23 UTC, John Colvin wrote: On Friday, 10 May 2013 at 13:51:11 UTC, deadalnix wrote: Awesome, I'll update the article. Andrei pointed out that the title needed fixing: I suggest: Type-safe tagged unions in the D programming language. Type-safe tagged unions

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Iain Buclaw
On 10 May 2013 15:38, Andrei Alexandrescu seewebsiteforem...@erdani.orgwrote: On 5/10/13 8:15 AM, Iain Buclaw wrote: On 10 May 2013 13:08, Andrei Alexandrescu seewebsiteforem...@erdani.org mailto:SeeWebsiteForEmail@**erdani.org seewebsiteforem...@erdani.org wrote: Enjoy!

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Jacob Carlborg
On 2013-05-10 16:38, Andrei Alexandrescu wrote: Two a week. Is there a reason for this? -- /Jacob Carlborg

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 11:24 AM, Jacob Carlborg wrote: On 2013-05-10 16:38, Andrei Alexandrescu wrote: Two a week. Is there a reason for this? Maximize impact. Andrei

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread SomeDude
On Friday, 10 May 2013 at 15:24:43 UTC, Jacob Carlborg wrote: On 2013-05-10 16:38, Andrei Alexandrescu wrote: Two a week. Is there a reason for this? It's good to keep people busy with D. ;) There have been way to many Go posts on reddit lately. :D

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread Jeff Nowakowski
On 05/10/2013 11:06 AM, Simen Kjaeraas wrote: 1dyinq, btw Right, q not g, thanks. That's what I get for not copying and pasting. I still find it amusing, though. I like to think there's a ghost in the machine having fun with us.

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Jesse Phillips
On Friday, 10 May 2013 at 12:08:10 UTC, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei These need to be updates on Kickstarter too.

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread John Colvin
On Friday, 10 May 2013 at 12:11:16 UTC, Andrei Alexandrescu wrote: On 5/10/13 8:08 AM, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Vote up! http://www.reddit.com/r/programming/comments/1e2boo/dconf_2013_day_1_talk_2_copy_and_move_semantics/ Andrei

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Piotr Szturmaj
W dniu 10.05.2013 14:32, deadalnix pisze: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. Here's my try on this:

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Nick Sabalausky
On Fri, 10 May 2013 08:08:09 -0400 Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Will this be going up on archive.org, too?

Re: DConf 2013 Opening Keynote by Walter Bright: video and slides available

2013-05-10 Thread Walter Bright
On 5/10/2013 3:45 AM, JN wrote: Can't wait for Manu's slides/video to come up :) I have to disagree with some of the points in the keynote though. The part with algorithm in D example, I don't know but map(a = a.idup) isn't exactly obvious. You're right, that one isn't. About the scope vs

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread David
Am 10.05.2013 19:28, schrieb Nick Sabalausky: On Fri, 10 May 2013 08:08:09 -0400 Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Will this be going up on archive.org, too? https://archive.org/details/dconf2013-day01-talk02

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Nick Sabalausky
On Fri, 10 May 2013 19:48:09 +0200 David d...@dav1d.de wrote: Am 10.05.2013 19:28, schrieb Nick Sabalausky: On Fri, 10 May 2013 08:08:09 -0400 Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Will this be going up on

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 1:49 PM, Andrei Alexandrescu wrote: On 5/10/13 10:15 AM, deadalnix wrote: On Friday, 10 May 2013 at 13:51:11 UTC, deadalnix wrote: Is this on Reddit yet? No, feel free to put it if you think it is appropriate !

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Nick Sabalausky
On Fri, 10 May 2013 08:08:09 -0400 Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Torrents up for both the low-quality FLV (from YouTube) and the full-quality MP4 (from archive.org): http://semitwist.com/download/misc/dconf2013/

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Ali Çehreli
On 05/10/2013 11:45 AM, Nick Sabalausky wrote: Torrents up for both the low-quality FLV (from YouTube) and the full-quality MP4 (from archive.org): http://semitwist.com/download/misc/dconf2013/ Thank you for doing this! I don't know how much interest there is in torrents Never used

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Walter Bright
On 5/10/2013 10:56 AM, Andrei Alexandrescu wrote: A general note about posting to reddit: it often happens that posts from infrequent posters go to spam by means of some automatic rule. When that happens you need to message the moderators and politely ask them to manually instate the post

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Jesse Phillips
On Friday, 10 May 2013 at 17:56:14 UTC, Andrei Alexandrescu wrote: A general note about posting to reddit: it often happens that posts from infrequent posters go to spam by means of some automatic rule. When that happens you need to message the moderators and politely ask them to manually

Re: Shameless autopromotion : type safe tagged union in D

2013-05-10 Thread Timon Gehr
On 05/10/2013 02:32 PM, deadalnix wrote: http://www.deadalnix.me/2013/05/10/type-safe-tagged-union-in-d-programming-language/ A trick that I used to use more and more, so I ended up creating a generic solution and wrote an article about it. I'd have implemented your TaggedUnion struct as

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread MattCoder
On Friday, 10 May 2013 at 12:08:10 UTC, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Very good talk. One more vote up!

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Walter Bright
On 5/10/2013 5:11 AM, Andrei Alexandrescu wrote: On 5/10/13 8:08 AM, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Andrei Vote up! http://www.reddit.com/r/programming/comments/1e2boo/dconf_2013_day_1_talk_2_copy_and_move_semantics/

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Mariusz `shd` Gliwiński
On Friday, 10 May 2013 at 12:08:10 UTC, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE I've added them to wiki. Will URLs like http://dconf.org/talks/bright.html be active in like 2 or more years? It would be great to have links like

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Andrei Alexandrescu
On 5/10/13 7:37 PM, Mariusz `shd` Gliwiński alienballa...@gmail.com wrote: On Friday, 10 May 2013 at 12:08:10 UTC, Andrei Alexandrescu wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE I've added them to wiki. Will URLs like http://dconf.org/talks/bright.html be active in like 2 or

Re: DConf 2013 Day 1 Talk 2: Copy and Move Semantics in D by Ali Cehreli

2013-05-10 Thread Flamaros
On Friday, 10 May 2013 at 18:45:15 UTC, Nick Sabalausky wrote: On Fri, 10 May 2013 08:08:09 -0400 Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Enjoy! https://www.youtube.com/watch?v=mPr2UspS0fE Torrents up for both the low-quality FLV (from YouTube) and the full-quality MP4