Skip to content

Instantly share code, notes, and snippets.

/*! normalize-all-you-really-need-tho.css v1.0.0 | MIT License */
html {
font-family: sans-serif; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
-ms-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
@supabok
supabok / gist:9822453
Last active August 29, 2015 13:57
EmberConf 2014 - Selected Talks(or the ones I could find ;)
https://speakerdeck.com/tomdale/emberconf-2014-keynote
https://speakerdeck.com/machty/emberconf-2014-mr-router-embraces-the-controller-alex-matchneer
https://machty.s3.amazonaws.com/emberconf/fun.html
https://speakerdeck.com/coderberry/the-unofficial-official-ember-testing-guide
https://github.com/rpflorence/ember-qunit
https://speakerdeck.com/cmeiklejohn/divergent
@supabok
supabok / BackboneJS+Intravenous
Created July 18, 2012 13:51
Test BackboneJS+Intravenous implementation
//initialization of DI(intravenous) and command classes
$(document).ready(function() {
//create DI
var container = intravenous.create();
//we want this object to exist as a singleton throughout the app lifecycle
container.register("currentQuestionItem", {dataObj:''}, "singleton");
container.register("currentQuesVal", {score:-1000}, "singleton");
container.register("currentSlideIndex", {slideIndex:0}, "singleton");