A Pen by Mike North on CodePen.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This is what a the cwd looks like in travis-ci
drwxrwxr-x 9 travis travis 4096 Aug 7 17:32 .
drwxrwxr-x 3 travis travis 32 Aug 7 17:30 ..
drwxrwxr-x 2 travis travis 8192 Aug 7 17:32 assets
drwxrwxr-x 15 travis travis 4096 Aug 7 17:31 bower_components
-rw-rw-r-- 1 travis travis 585 Aug 7 17:32 crossdomain.xml
drwxrwxr-x 4 travis travis 88 Aug 7 17:32 dist
drwxrwxr-x 8 travis travis 4096 Aug 7 17:32 .git
Mike North is a speaker, startup advisor, and CTO of Levanto Financial. Previously he worked at Yahoo as the UI Architect of the Ads & Data division, where he provided technical leadership and oversight over more than a dozen products and 100+ engineers, as well as being a major contributor to building a new ad platform, and developing it to the point where it makes over $1M a day.
As a prolific open source author and contributor, Mike is passionate about improving build tools and developer ergonomics. He has a passion for productivity-oriented frameworks and tools that help teams and businesses bring their ideas to life quickly and easily.
Front End Masters Ember.js Workshop - Setup
You can verify that you have node.js by running node -v
and you should see something like v0.12.7
function json(obj, status=200) { | |
return [status, { 'Content-Type' : 'text/json'}, JSON.stringify(obj)]; | |
} | |
var server = new Pretender(function(){ | |
this.get('https://api.github.com/orgs/:id', | |
() => json({ | |
id: 99, |
import Ember from 'ember'; | |
import { | |
moduleForModel, test | |
} | |
from 'ember-qunit'; | |
moduleForModel('record', 'Unit | Serializer | record', { | |
// Specify the other units that are required for this test. | |
needs: ['serializer:record'] |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |