Skip to content

Instantly share code, notes, and snippets.

View pixelhandler's full-sized avatar
🍊
Working remotely

Billy Heaton pixelhandler

🍊
Working remotely
View GitHub Profile
@pixelhandler
pixelhandler / .gitignore
Created December 3, 2014 06:05
ember-cli-es5-shim
/node_modules
npm-debug.log
@pixelhandler
pixelhandler / slides.js
Created January 14, 2015 17:59
Ember CLI http-mock backed by RethinkDB
/*
Add `nouns` as http mocks and use in a local db, available via API in develoment
* Install the adapter `npm install rethinkdb_adapter --save-dev`
* Install RethinkDB, see https://github.com/pixelhandler/ember-slide-deck/blob/master/bin/install_rethinkdb.sh
* Start db `rethinkdb`
* Setup Db and Table, see https://github.com/pixelhandler/ember-slide-deck/blob/master/bin/setup_db.js
* Generate a mock `ember g http-mock nouns` and edit your mock to use the db, see code below for 'slides'
* Set your application adapter to use `namespace: 'api'`
* In our routes use Ember Data in your model hook
@pixelhandler
pixelhandler / ember-sc-jan-2015.md
Last active March 14, 2016 16:26
Ember-SC Jan 2015 meetup notes, topics for discussion of the Ember 2.0 Evolution
@pixelhandler
pixelhandler / perf-test-ember-beta.md
Last active August 29, 2015 14:14
Perf test of rendering using Ember 1.9.1 vs 1.10.0-beta.4
@pixelhandler
pixelhandler / Measuring-Performance-with-User-Timing-API.md
Last active March 18, 2019 04:05
Notes from talk at Ember-SC Feb '15 Meetup and EmberConf 2015 Minitalk: Measuring Performance with User Timing API
@pixelhandler
pixelhandler / a-bet-on-web-components-and-ember-component-synchronicity.md
Last active August 29, 2015 14:15
Notes from talk at Ember-SC Feb '15 Meetup: A Bet on Web Components and Ember.Component Synchronicity

A Bet on Web Components and Ember.Component Synchronicity

by Bill Heaton @pixelhandler

We’ll take a look at for both Web Components and Ember Components, and blur the lines between the two.

With the Ember 2.X Evolution on the way, you will have a new generation of first class citizens for your DOM.

Design your Ember Components with future standards in mind, learn easy ways for components to communicate using native events, & how to use native Web Components in synchronicity with Ember Components.

@pixelhandler
pixelhandler / ember-cookbook.md
Last active August 29, 2015 14:24
Plans for ember-cookbook.com

Curated Content: Ember Cookbook

  • Community submitted and reviewed cookbook content for solutions using the Ember.js framework.
  • Authenticated user (with github) may 'suggest a solution'

Content format (solution)

(follows the original Ember.js Guides/Cookbook)

@pixelhandler
pixelhandler / Ember-Issue-Triage.md
Last active November 18, 2016 18:13
Ember Issue Triage

Ember Issue Triage

Some background on issue tracking:

When Ember developers assist the core team with issue triage, the core team and contributors can spend more focused time on actionable results.

import Ember from 'ember';
export default Ember.Component.extend({
actions: {
mouseDown() {
console.log('mouseDown');
},
focusOut() {
console.log('focusOut');
}
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle'
});