Skip to content

Instantly share code, notes, and snippets.

View mixonic's full-sized avatar

Matthew Beale mixonic

View GitHub Profile
curl -H "Origin: http://tobe-staging.herokuapp.com" http://tobe-staging.storage.googleapis.com/a43259256806cd017d6b2181fa5ad929509787ad-ajc2F9gAYnYvng.gif -s -D - -o /dev/null
routeChanged: (->
Em.run.next ->
path = window.location.pathname
window._gaq.push(['_trackPageview', path])
).observes('currentPath')
# NON-POLY
LibraryElement
# has what attrs?
belongs_to :animated_component, class_name: 'Component'
belongs_to :photo_component, class_name: 'Component'
belongs_to :audio_component, class_name: 'Component'
belongs_to :embedded_html_component
belongs_to :stencil_description
// Version: v1.0.0-pre.4-36-g0d78336
// Last commit: 0d78336 (2013-01-25 09:21:59 -0800)
(function() {
/*global __fail__*/
/**
Ember Debug
commit 3fb6fb00626201fd096b2d8313178e393e0b5903
Author: Matthew Beale <[email protected]>
Date: Fri Jan 25 14:15:57 2013 -0500
Add tests for #1866 - loc helper
diff --git a/packages/ember-handlebars/lib/helpers/loc.js b/packages/ember-handlebars/lib/helpers/loc.js
index d2d1f8b..7b023f5 100644
--- a/packages/ember-handlebars/lib/helpers/loc.js
+++ b/packages/ember-handlebars/lib/helpers/loc.js
@mixonic
mixonic / ember-data.js
Last active December 11, 2015 10:58
Builds of Ember master
(function() {
window.DS = Ember.Namespace.create({
// this one goes to 11
CURRENT_API_REVISION: 11
});
})();
(function() {
window.DS = Ember.Namespace.create({
CURRENT_API_REVISION: 10
});
})();
(function() {
$ depdep deploy
-- Before Deployment --
REV 23d23f2f23f23f2
Last deploy by Iago <[email protected]> at 2011-12-03 13:42:34
Deployment is not locked
-- Deploying Site --
Local REV is 12312412412412
Running predeploy hooks...
Locking for deployment...
Host gitolite-admin-account
HostName localhost
User matthewbeale
Port 22
IdentityFile ~/.ssh/matthewbeale
@function mycompact($one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten) {
$originalList: $one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten;
$compactList: ();
@each $item in $one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten {
@if $item != false {
append $compactList, $item;
}
}
@return( $compactList );
}