Skip to content

Instantly share code, notes, and snippets.

@bhattisatish
bhattisatish / gist:1877001
Created February 21, 2012 15:21
Tracking football in a html5 video
// Original source http://lusob.com/2012/02/tracking-a-football-match-with-html5-and-javascript/
(function( $ ){
function format(str) {
for (var i = 1; i < arguments.length; i++) {
str = str.replace('%' + (i - 1), arguments[i]);
}
return str;
}
@bhattisatish
bhattisatish / gist:1885304
Created February 22, 2012 14:15 — forked from m0tive/gist:1884821
export google history
require 'mechanize'
require 'logger'
require 'date'
## Call:
## $ ruby export.rb <gmail> <password>
# https://www.google.com/history/lookup?hl=en&month=11&day=04&yr=2008&output=rss&num=9999
agent = Mechanize.new do |a|
@bhattisatish
bhattisatish / Makefile.deploy.staging
Created February 23, 2012 07:53
Makefile to create a staging environment that is a replica of prod on Heroku
# Original Source: http://illuminatedcomputing.com/posts/2011/11/disposable-staging-site-on-heroku/
# We use this Makefile to destroy the staging site
# and re-create it based on production.
# This is useful to keep staging current,
# and it's especially nice so we can rehearse deployments.
# If we nuke staging and then deploy the latest code there,
# we can be more confident that the production deploy
# will run smoothly.
PRODUCTION_APP=example
@bhattisatish
bhattisatish / hack.sh
Created March 31, 2012 12:18 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@bhattisatish
bhattisatish / deploy.rake
Created April 7, 2012 06:58 — forked from njvitto/deploy.rake
Rakefile to deploy and rollback to Heroku in two different environments (staging and production) for the same app
#Deploy and rollback on Heroku in staging and production
task :deploy_staging => ['deploy:set_staging_app', 'deploy:push', 'deploy:restart', 'deploy:tag']
task :deploy_production => ['deploy:set_production_app', 'deploy:push', 'deploy:restart', 'deploy:tag']
namespace :deploy do
PRODUCTION_APP = 'YOUR_PRODUCTION_APP_NAME_ON_HEROKU'
STAGING_APP = 'YOUR_STAGING_APP_NAME_ON_HEROKU'
task :staging_migrations => [:set_staging_app, :push, :off, :migrate, :restart, :on, :tag]
task :staging_rollback => [:set_staging_app, :off, :push_previous, :restart, :on]
@bhattisatish
bhattisatish / heroku_deploy.rake
Created April 7, 2012 12:59 — forked from michaeldwan/heroku_deploy.rake
Simple Rake task for customizing deployment to Heroku
# List of environments and their heroku git remotes
ENVIRONMENTS = {
:staging => 'myapp-staging',
:production => 'myapp-production'
}
namespace :deploy do
ENVIRONMENTS.keys.each do |env|
desc "Deploy to #{env}"
task env do
@bhattisatish
bhattisatish / song.rb
Created September 9, 2012 11:48 — forked from natew/song.rb
Rails model for parsing artist information from a song
class Song
# Regular expressions
RE = {
:featured => /(featuring | ?ft\.? |feat\.? |f\. |w\/){1}/i,
:remixer => / remix| rmx| edit| bootleg| mix| remake| re-work| rework| extended remix| bootleg remix/i,
:mashup_split => / \+ | x | vs\.? /i,
:producer => /^(produced by|prod\.? by |prod\. )/i,
:cover => / cover/i,
:split => /([^,&]+)(& ?([^,&]+)|, ?([^,&]+))*/i, # Splits "one, two & three"
:open => /[\(\[\{]/,
@bhattisatish
bhattisatish / redis_dump_all.rb
Created September 24, 2012 08:18
Dump all keys onto stdout
#!/usr/bin/env ruby
require "redis"
redis = Redis.new
redis.keys("*").each do |key|
val = case redis.type(key)
when "string"
redis.get key
when "list"
@bhattisatish
bhattisatish / call_rate_limiter
Created October 15, 2012 18:03
Limiting JS Function calls to avoid frequent calls. Origin http://ryhan.org/post/33374611308/limiting-function-calls
//// some function
//var foo = function ( data ){ console.log(data); }
//// identical to foo(), except can only be called once every 100ms.
//var limitedFoo = trickle(foo, 100);
////
function trickle( fun , waitLength )
{
var lastCalledAt = 0,
context = this;
@bhattisatish
bhattisatish / hackathon_checklist.txt
Created December 10, 2012 20:29
Running your own hackathon?
# Build around a theme
Ensure that you have a theme around the hackathon. It should be generic enough for people to have freedom on what they want to build, but specific enough for people to focus on. There is nothing like a goal oriented hackathon. The energy that can build up is amazing.
If you are running it as an internal event, then make sure you brainstorm/vote on the theme by getting the whole org involved.
Organize the event for at least 2-3 days.Though I have seen 1 night events, rarely anything comes out of those.
If it's an internal event, avoid conducting it over a weekend, however tempting.
# Logistics
Take care of the food! Three meals, and maybe couple of snack periods. If you can afford it, try to have a full pantry for snacks.