Skip to content

Instantly share code, notes, and snippets.

View adaburrows's full-sized avatar

Jillian Ada Burrows adaburrows

View GitHub Profile

Interactive Machine Learning

Taught by Brad Knox at the MIT Media Lab in 2014. Course website. Lecture and visiting speaker notes.

by tef ( http://twitter.com/tef_ebooks ) and Tim ( http://twitter.com/fatneckbeardguy )
I hear the BART a comin'
It's rollin' round the bend
And I haven't seen the sunshine
since I don't know when
I'm stuck in San Francisco
and time keeps dragging on
But that train keeps a rollin'
On down to Pleasantone
@plepe
plepe / gist:52ecc9f18efb32c68d18
Last active October 23, 2023 08:50
MDADM and LVM cheat sheet

mdadm

Glossary:

  • md: multiple devices
command description
cat /proc/mdstat show status of all raids
mdadm --detail /dev/md0 detailed status of raid md0
@dholth
dholth / gradient.js
Created November 15, 2011 20:20
d3.js + svg gradients
var svg = d3.select("body")
.append("svg:svg")
.attr("width", 256)
.attr("height", 256);
var defs = svg.append('svg:defs');
defs.append('svg:linearGradient')
.attr('gradientUnits', 'userSpaceOnUse')
.attr('x1', 0).attr('y1', 0).attr('x2', 20).attr('y2', 0)