This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Backbone.View.bridge = (klass, namespace = window) -> | |
name = klass.charAt(0).toLowerCase() + klass.slice(1) | |
return unless namespace[klass] | |
console.log $.fn[name] | |
return $.fn[name] if $.fn[name]? | |
$.fn[name] = (options = {}) -> | |
$el = $(this) | |
opts = _.extend(options, { el: this }) | |
ctor = new namespace[klass] opts | |
data = $el.data(name) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# jquery on | |
next.on('canplay', -> | |
console.log('canplay') | |
# next.unbind('canplay') | |
) | |
next.on('canplaythrough', -> | |
console.log('canplaythrough') | |
# next.unbind('canplay') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write org.vim.MacVim MMTextInsetTop '10' | |
defaults write org.vim.MacVim MMTextInsetLeft '10' | |
defaults write org.vim.MacVim MMTextInsetBottom '10' | |
defaults write org.vim.MacVim MMTextInsetRight '10' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Backbone.View + jquery.widget.bridge | |
# https://gist.github.com/1641439 | |
# | |
# Bridge Backbone views > jQuery.ui widget | |
# Allows instantiating BB views using jQuery | |
# e.g. $('.slideshow').slideshow() | |
# | |
# requires jquery.ui.widget | |
class window.Slideshow extends Backbone.View |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# INSTRUCTIONS | |
# - Put this file into a directory containing mp3s | |
# - Open in TextMate + run it (cmd+r) | |
dir = File.dirname(__FILE__) | |
mp3s = File.join(dir, "**", "*.mp3") | |
Dir.glob(mp3s) do |f| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# INSTRUCTIONS | |
# - Puth this file into a directory containing mp3s | |
# - Open in TextMate + run it (cmd+r) | |
# - get_audio_length method via: http://bit.ly/sIKObq | |
dir = File.dirname(__FILE__) | |
mp3s = File.join(dir, "**", "*.mp3") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! ----------------------------------------------- | |
* simplegrid.scss | |
* https://gist.github.com/gists/1409900/ | |
* Custom version of 960.gs (http://960.gs/) | |
* Naming inspired by SimpleBits (http://simplebits.com/) | |
* Licensed under GPL and MIT | |
* | |
* Custom: | |
* - columns > 12 | |
* - underscores > dashes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Let's start with the basics | |
$base-color: #333; | |
$active-color: #ff8100; | |
$base-gradient: 'flat'; | |
// Buttons | |
$button-gradient: 'bevel'; | |
// Lists | |
$list-bg-color: #eee; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# Instructions | |
# - Install optipng + libjpeg (http://mxcl.github.com/homebrew/) | |
# - Put this file in a directory of images | |
# - Open in TextMate + run it (cmd+r) | |
# Config |