Skip to content

Instantly share code, notes, and snippets.

View arunaugustine's full-sized avatar

Arun Augustine arunaugustine

View GitHub Profile
" copy all this into a vim buffer, save it, then...
" source the file by typing :so %
" Now the vim buffer acts like a specialized application for mastering vim
" There are two queues, Study and Known. Depending how confident you feel
" about the item you are currently learning, you can move it down several
" positions, all the way to the end of the Study queue, or to the Known
" queue.
" type ,, (that's comma comma)
@arunaugustine
arunaugustine / python aifc numpy
Created May 9, 2013 23:39
Converting aifc file into python numpy array Also pickling in python
import aifc
import numpy
import scipy
import scipy.fftpack
import cPickle
# Program to picke the whale data
datafolder = "../data/smalldata/"
filename = "train28.aiff"