Skip to content

Instantly share code, notes, and snippets.

View jordpo's full-sized avatar

Jordan Morano jordpo

  • Burlington, VT
View GitHub Profile
@jordpo
jordpo / Contract Killer 3.md
Created March 17, 2016 14:14 — forked from malarkey/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@jordpo
jordpo / ajax.js
Last active February 22, 2017 00:01
IcarusWorks - Single Sign On with Ember.js
// addon/services/ajax.js
// ensure custom ajax requests have the appropriate authorization headers when signed in
import Ember from 'ember';
import AjaxService from 'ember-ajax/services/ajax';
const {
computed,
inject,
get
} = Ember;
@jordpo
jordpo / polling-alt.js
Last active August 29, 2015 14:26
Ember Polling Mixin for Routes
// an alternative approach to my gist below
import Ember from 'ember';
const get = Ember.get;
const set = Ember.set;
const later = Ember.run.later;
const cancel = Ember.run.cancel;