Skip to content

Instantly share code, notes, and snippets.

[JSKongress] ECMAScript of the Future: ES2017 & Beyond

Speaker: Brian Terlson

Twitter/github: @bterlson

Notes:

  • A overview of TC39's work:
    • ECMA262: The ECMAScript Language Specification.
  • ECMA402: Internationalization APIs for ECMAScript.

Keybase proof

I hereby claim:

  • I am svillafe on github.
  • I am svillafe (https://keybase.io/svillafe) on keybase.
  • I have a public key whose fingerprint is CD1E 408B A0A7 6FF4 E18A 8A37 3D6C DCEC 2528 7823

To claim this, I am signing this object:

package wikipedia
import org.apache.spark.SparkConf
import org.apache.spark.SparkContext
import org.apache.spark.SparkContext._
import org.apache.spark.rdd.RDD
case class WikipediaArticle(title: String, text: String) {
/**
package wikipedia
import org.apache.spark.SparkConf
import org.apache.spark.SparkContext
import org.apache.spark.SparkContext._
import org.apache.spark.rdd.RDD
case class WikipediaArticle(title: String, text: String)
#!/bin/sh
#
# Automatically adds branch name and branch description to every commit message.
#
NAME=$(git branch | grep '*' | sed 's/* //')
DESCRIPTION=$(git config branch."$NAME".description)
TEXT=$(cat "$1" | sed '/^#.*/d')
if [ -n "$TEXT" ]
then