Upcoming talk on ES6 in Russia

2013-03-23 Thread Axel Rauschmayer
On March 30, I’ll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1] where I hope to convince people that they have something to look forward to. A draft of my slides is here, feedback welcome: http://dl.2ality.com/codefest_es6.pdf [1] http://2013.codefest.ru/ -- Dr. Axel

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread denom
6:37:38 PM Subject: Upcoming talk on ES6 in Russia On March 30, I’ll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1] where I hope to convince people that they have something to look forward to. A draft of my slides is here, feedback welcome: http://dl.2ality.com/codefest_es6.pdf

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread herby
In slide Classes: sub-type use `super(x,y);` instead of overspecified `super.constructor(x,y);`. -- View this message in context: http://mozilla.6506.n7.nabble.com/Upcoming-talk-on-ES6-in-Russia-tp275666p275669.html Sent from the Mozilla - ECMAScript 4 discussion mailing list archive

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Axel Rauschmayer
Could you plase explain how the slide #23.Object literals comes in alingment with slide #7.Challenges of evolving a web language where it is written Preserve nature of JavaScript ? There are two camps, each of which has strong feelings: 1. JavaScript is good enough as it is, don’t change

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread André Bargull
On March 30, I'll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1] where I hope to convince people that they have something to look forward to. A draft of my slides is here, feedback welcome: http://dl.2ality.com/codefest_es6.pdf [1]http://2013.codefest.ru/ -- Dr. Axel

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Brandon Benvie
I also am in camp two ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Rick Waldron
javascript:_e({}, 'cvml', 'a...@rauschma.de'); To: es-discuss list es-discuss@mozilla.org javascript:_e({}, 'cvml', 'es-discuss@mozilla.org'); Sent: 3/23/2013 6:37:38 PM Subject: Upcoming talk on ES6 in Russia On March 30, I’ll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1

Upcoming talk on ES6 in Russia

2013-03-23 Thread Rick Waldron
On Saturday, March 23, 2013, Axel Rauschmayer wrote: On March 30, I’ll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1] where I hope to convince people that they have something to look forward to. A draft of my slides is here, feedback welcome:

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Rick Waldron
I forgot to say: these are lovely slides Rick On Saturday, March 23, 2013, Axel Rauschmayer wrote: On March 30, I’ll hold a talk on ECMAScript 6 at CodeFest 2013 in Novosibirsk [1] where I hope to convince people that they have something to look forward to. A draft of my slides is here,

Re: Re[2]: Upcoming talk on ES6 in Russia

2013-03-23 Thread Rick Waldron
Subject: Re: Upcoming talk on ES6 in Russia On Saturday, March 23, 2013, denom wrote: Hello Dr. Rauschmayer, Could you plase explain how the slide #23.Object literals comes in alingment with slide #7.Challenges of evolving a web language where it is written Preserve nature of JavaScript

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Jorge Chamorro
On 23/03/2013, at 19:41, Axel Rauschmayer wrote: Arrow functions are a good example: A more JavaScript-y syntax would have been `fn`: let squares = [1,2,3].map(fn(x) { return x*x }); Or: let squares = [1,2,3].map(fn(x) x*x); However, due to backward compatibility that syntax

Re: Upcoming talk on ES6 in Russia

2013-03-23 Thread Brendan Eich
Jorge Chamorro wrote: On 23/03/2013, at 19:41, Axel Rauschmayer wrote: Arrow functions are a good example: A more JavaScript-y syntax would have been `fn`: let squares = [1,2,3].map(fn(x) { return x*x }); Or: let squares = [1,2,3].map(fn(x) x*x); However, due to backward