Skip to content

Instantly share code, notes, and snippets.

View jefffederman's full-sized avatar

Jeff Federman jefffederman

View GitHub Profile
@jefffederman
jefffederman / gist:902235
Created April 4, 2011 19:23
Simple Python web server
python -m SimpleHTTPServer
@jefffederman
jefffederman / Standard Font Size Progression
Created January 29, 2011 17:53
Standard Font Size Progression
6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 21, 24, 36, 48, 60, 72
@jefffederman
jefffederman / gist:732636
Created December 7, 2010 23:30
Animating PNG's in IE
- wrap img tags in div tag
- animate the divs
- use unitpngfix.js
should be good to go!
@jefffederman
jefffederman / Git - file diff's between two branches
Created October 28, 2010 21:58
List files that have changes between two Git branches
git diff --name-status {branch-1}..{branch-2}
e.g., git diff --name-status master..my_new_branch