adapted from this blog
# YAML
name: Jon# YAML
object:adapted from this blog
# YAML
name: Jon# YAML
object:| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
All right, everybody! Welcome to my talk. ES2016, the evolution of JavaScript. First a little bit about me. My name is Jafar Husain. I'm a tech lead at Netflix, I work for Falcor, an upcoming open data platform, which we intend to release pretty soon, and I'm also one of Netflix's representatives on TC-39, which is JavaScript's standard's committee. This talk used to be called ES7, the evolution of JavaScript, but something happened a couple of committee meetings ago. We decided to change ES6 to ES2015 and ES7 to ES2016. I want to explain this name change. We as a committee want to start shipping JavaScript every year. Just the way you would ship software in an agile way, we want to add features and ship them
| /** | |
| * Pie charts — with SVG | |
| */ | |
| .pie { | |
| width: 100px; | |
| height: 100px; | |
| display: inline-block; | |
| margin: 10px; | |
| transform: rotate(-90deg); |
| /** | |
| * Static interpolation via paused animations | |
| * This technique becomes more useful if you need to interpolate more than 1 properties, and/or if you need multiple values in the spectrum | |
| * Currently works in every modern browser except Safari | |
| */ | |
| @keyframes foo { | |
| from { background: red } | |
| to { background: yellowgreen } | |
| } |
| /** | |
| * Pie charts — with SVG | |
| */ | |
| .pie { | |
| width: 100px; | |
| height: 100px; | |
| display: inline-block; | |
| margin: 10px; | |
| transform: rotate(-90deg); |
| // Module dependencies | |
| var express = require('express'), | |
| mysql = require('mysql'); | |
| // Application initialization | |
| var connection = mysql.createConnection({ | |
| host : 'localhost', | |
| user : 'root', |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| /* eslint-disable prefer-template */ | |
| const path = require('path'); | |
| const aliases = require('./aliases'); | |
| // /////////////////////////////////////////////////////////////// | |
| // ////////////////// PLUGINS //////////////////////////////// | |
| // /////////////////////////////////////////////////////////////// | |
| const commonPlugins = [ |
| const defaultsMain = { | |
| content: { | |
| title: 'defaultTitle', | |
| description: 'defaultDescription' | |
| } | |
| } | |
| const defaultObj = { main: defaultsMain } | |
| const { | |
| main: { | |
| content: { title } |