Skip to content

Instantly share code, notes, and snippets.

View drewyeaton's full-sized avatar
💭
creating a bug

Drew Yeaton drewyeaton

💭
creating a bug
View GitHub Profile
@myobie
myobie / mountain-lion-brew-setup.markdown
Created February 18, 2012 20:14
Get Mountain Lion and Homebrew to Be Happy

Get Mountain Lion and Homebrew to Be Happy

1) Install XCode 4.4 into /Applications

Get it from the App Store.

2) Install Command Line Tools

In XCode's Preferences > Downloads you can install command line tools.

@drewyeaton
drewyeaton / stats.py
Created December 14, 2011 05:03
Stats Class
# Original averaging code from Zed Shaw's Stats class.
# Moving average code by Drew Yeaton.
from math import sqrt
from collections import deque
class SimpleAverage(object):
def __init__(self, sum=0.0, sumsq=0.0, n=0, minimum=0, maximum=0.0):