Skip to content

Instantly share code, notes, and snippets.

View evanpeck's full-sized avatar

Evan Peck evanpeck

View GitHub Profile

This is a header - it's big

In general, you can just type away, but there are a number of markers that are nice to know.

If you want to quote something from text, use >:

this is how I would quote some text from another source. This is especially nice if it's a longer quote. Is this long enough? I'm just making up words as I write.

More pound signs mean smaller headers

@evanpeck
evanpeck / .block
Created October 29, 2016 20:16
HindSight: Zoomable Treemap Bar Chart
license: mit
@evanpeck
evanpeck / .block
Last active October 29, 2016 02:41
HindSight: Bubbly Jobs Chart
height: 2500
@evanpeck
evanpeck / .block
Last active October 29, 2016 01:57
HindSight: Sequences sunburst
license: mit
@evanpeck
evanpeck / .block
Last active October 28, 2016 14:01
HindSight: US Map of Nielsen Media Markets
license: mit
@evanpeck
evanpeck / .block
Created October 28, 2016 13:29
HindSight: Exoplanets Scatterplot
license: gpl-3.0
@evanpeck
evanpeck / .block
Last active October 28, 2016 14:20
HindSight: D3 Scatterplot Example
license: mit
@evanpeck
evanpeck / recursiveTrace.py
Last active August 29, 2015 14:07
While teaching recursion in an Introduction to CS class, I wasn't terribly happy with any existing visualizations of recursive methods. I created a very simple command-line vis that traces the calls in sumOfDigits
'''
ORIGINAL FUNCTION
def sumOfDigits(numberString):
if len(numberString) < 1:
return 0
else:
return int(numberString[0]) + sumOfDigits(numberString[1:])
'''