Skip to content

Instantly share code, notes, and snippets.

@hughdbrown
hughdbrown / sha_backup.py
Created January 17, 2011 21:23
Idea for a git-like backup program
"""
Python script to backup data in src to dst using sha1 hashes of the files
in a backing directory.
Hugh Brown
hughdbrown@yahoo.com
"""
from hashlib import sha1
import os
@hughdbrown
hughdbrown / knapsack.py
Last active December 30, 2015 18:09
My brute force solution for knapsack problem, http://xkcd.com/287/
weights = [215, 275, 335, 355, 420, 580]
limit = 1505
ds = {
i * w: [w] * i
for w in weights
for i in range(1, 1 + (limit // w))
}
for w in weights:
@hughdbrown
hughdbrown / pgsnap.py
Last active August 29, 2015 14:13 — forked from alq666/pgsnap.py
#!/usr/bin/env python
import os
import sys
import time
import subprocess
import urllib2
import boto
@hughdbrown
hughdbrown / keybase.md
Created April 29, 2015 15:27
keybase.md

Keybase proof

I hereby claim:

  • I am hughdbrown on github.
  • I am hughdbrown (https://keybase.io/hughdbrown) on keybase.
  • I have a public key whose fingerprint is 9CD4 F942 05BA F9CC 4ABD CB31 A9D2 7566 110A B89D

To claim this, I am signing this object:

@hughdbrown
hughdbrown / pandas-fragment.md
Last active August 29, 2015 14:27
pandas fragments

Dates

date_range

date_series = pd.date_range("start_date", "end_date")

CSV files

df = pd.read_csv("filename.csv", parse_dates=["column1"], index_col=["column2"])
@hughdbrown
hughdbrown / hours-to-build-shelves.md
Last active August 29, 2015 14:27
Hours taken to install shelves
Day Time Total
Friday 2.00 hours
Saturday 10:00 - 18:00 8.00 hours
Saturday 19:30 - 21:30 2.00 hours
Sunday 4.00 hours
Monday 10:00 - 17:30 7.50 hours
Tuesday 09:00 - 17:00 8.00 hours

31.5 hours total

@hughdbrown
hughdbrown / numpy-fragment.md
Created August 20, 2015 19:39
Useful fragments of numpy code

Selection

where

>>> import numpy as np
>>> a = np.array([[7, 4, 3, 7],
...  [7, 2, 5, 4],
...  [1, 7, 5, 1]])
>>> for (i, j) in zip(*np.where(a % 2 == 0)):
...     print("[{0}, {1}]: {2}".format(i, j, a[i, j]))
... 
import ConfigParser
import os.path
def get_creds():
botofile = os.path.expanduser("~/.boto")
with open(botofile) as f:
c = ConfigParser.ConfigParser()
c.readfp(f)
return tuple(
from scapy.all import *
AMAZON_TABLE = {
'74:75:48:5f:99:30': 'Huggies,
'10:ae:60:00:4d:f3': 'Elements',
}
def is_arp(arp):
return (arp.op, arp.prc) == (1, '0.0.0.0')