Skip to content

Instantly share code, notes, and snippets.

@sharonw
sharonw / gist:5278701
Created March 30, 2013 22:51
Error output when following setup instructions here: http://newcoder.io/Part-0-Setup-for-DataViz/
System info: OS X 10.7.5, Xcode 4.6.1
(installed Command Line Tools in Preferences > Downloads)
$ gcc
i686-apple-darwin11-llvm-gcc-4.2: no input files
$ python --version
Python 2.7.3
$ which python
@sharonw
sharonw / csv2json.py
Created April 29, 2012 05:17
Translate MLB team schedule from csv into json
# Go to http://mlb.mlb.com/mlb/schedule/team_by_team.jsp
# Click on Regular Schedule
# Scroll down and click on Downloadable schedule
# e.g. http://sanfrancisco.giants.mlb.com/schedule/downloadable.jsp?c_id=sf&year=2012
# Download Full Season Schedule
# Suggestions for future enhancements:
# TODO: come up with a column schema way of representing the csv
# (referring to column names is more elegant than num indices)
# TODO: take file names as command line arguments