Skip to content

Instantly share code, notes, and snippets.

@flimshaw
flimshaw / twitterColumbo.py
Created July 24, 2012 15:00
A python script that prints out all tweets mentioning Columbo
import tweetstream
import time
# receipt printer driver
import printer as rp
printer = rp.RPrinter()
print "TwitterFeed!"
@flimshaw
flimshaw / jquery.animateCss.plugin.js
Created July 23, 2012 20:41
Little jQuery plugin for calling CSS3 animations and attaching callbacks to them
// Generated by CoffeeScript 1.3.3
//
// animateCss jQuery Plugin by Charlie Hoey <charlie.hoey@gmail.com>
//
// DESCRIPTION: Apply a CSS3 animation class, and and a callback to fire
// when it's done. Works well with animate.css (http://daneden.me/animate/)
// but custom css styles work just fine too.
//
// USAGE: $("#divID").animateCss({ startAnimation: "bounceOutRight", callback: function() { console.log("Done!"); });
//