Skip to content

Instantly share code, notes, and snippets.

@baires
baires / .gitignore
Created July 25, 2012 02:47 — forked from mrrooijen/.gitignore
MiddleMan on Heroku configuration.
.DS_Store
*.swp
*.swo
Gemfile.lock
@baires
baires / .htaccess
Created June 12, 2012 05:28 — forked from necolas/.htaccess
Simple, quick way to concatenate, minify, and version static files in a Wordpress theme
# Filename-based cache busting
# taken from https://github.com/h5bp/html5-boilerplate/
# This rewrites file names of the form `name.123456.js` to `name.js`
# so that the browser doesn't use the cached version when you have
# updated (but not manually renamed) the file.
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
@baires
baires / coffeescript_twitter_jquery.coffee
Created February 21, 2012 00:09 — forked from mwawrusch/coffeescript_twitter_jquery.coffee
Coffeescript implementation of a twitter jquery plugin
# Quick jquery plugin to display recent tweets
# (C) 2011 Martin Wawrusch (@martin_sunset , http://martinatsunset.com, https://github.com/mwawrusch)
#
# The juicy parts are from:
#
# http://www.simonwhatley.co.uk/ (Simon Whatley)
# https://github.com/jimeh (Jim Myhrberg)
#
# I just assembled them in coffeescript.
#