Skip to content

Instantly share code, notes, and snippets.

View satishv's full-sized avatar

satish viswanatham satishv

  • Second Genome
  • San Francisco, CA
  • X @satish_
View GitHub Profile
@satishv
satishv / ClojureFilterFP
Created March 31, 2012 05:49 — forked from mlimotte/ClojureFilterFP
Counters in Cascalog
/**
* The majority of this class is copied form the Cascalog source (1.7.0-SNAPSHOT as of 9/17/2011).
* This is a filter operation, where the FlowProcess object is exposed
*/
package com.weatherbill.hadoop;
import cascading.operation.Filter;
import cascading.operation.FilterCall;
import cascading.flow.FlowProcess;
@satishv
satishv / das_download.rb
Created March 31, 2012 05:16 — forked from maca/das_download.rb
Script to download all Destroy All Software screencasts, account needed
#! /usr/bin/env ruby
# usage:
# $ das_download.rb email password [download_directory]
require 'mechanize'
# gem 'mechanize-progressbar'
email = ARGV[0] or raise('Please provide the email address for your account')
password = ARGV[1] or raise('Please provide the password for your account')
path = ARGV[2] || './'