Skip to content

Instantly share code, notes, and snippets.

@jim-y
jim-y / test.css
Created September 29, 2016 09:56
.plan {
background-color: red;
}
#!/bin/sh
npm install -g browserify
echo "installed browserify"
wget https://gist.githubusercontent.com/jerolimov/3756821/raw/d040f68f3adbbc0d137abd38cf3b945423858ddb/youtube.js
echo "fetched youtube.js"
browserify youtube.js -o out.js
echo "the result is in out.js"
#utana chmod +x yt.sh && ./yt.sh
Categories Apples Pears Oranges Bananas
John 8 4 6 5
Jane 3 4 2 3
Joe 86 76 79 77
Janet 3 16 13 15
<div class="sidebar-about">
<h1>
<a href="{{ site.baseurl }}">
{{ site.title }}
</a>
</h1>
<p class="lead">{{ site.description }} - <a href="{{ site.author.url }}">@{{ site.author.name }}</a></p>
</div>
var STATE = {
books: new Backbone.Collection([], {
model: Models.BOOK_MODEL
}),
users: new Backbone.Collection([], {
model: Models.USER_MODEL
}),
categories: new Backbone.Collection([], {
model: Models.CATEGORY_MODEL
})