Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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 / 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 / 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 / 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 / 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 / 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 / track_spree
Created January 18, 2012 07:05
TRACKS CHANGES TO PARTS OF SPREE SINCE A GIVEN COMMIT
#!/usr/bin/env zsh
# 1304046900 TRACKS CHANGES TO PARTS OF SPREE SINCE A GIVEN COMMIT
# To be placed at the root of your app.
old_commit="29e3d4f707bdb047a6fabc2543247139027b06fb"
parts=(
core/app/views
@bhattisatish
bhattisatish / yoursite_extension.rb
Created January 15, 2012 00:59 — forked from teeparham/yoursite_extension.rb
Adding new fields to Spree Variant's additional_fields
# Samples for formatting additional Product fields in Spree Admin
# SelectField: adds a select box with values 1..20
# WideField: adds a standard text box, but with a specified size
# HugeField: adds a text area with a specified number of columns
# OptionField: adds an option field
# CheckField: adds a checkbox field.
Variant.additional_fields += [
{ :name => 'SelectField',
:only => [:product],