Skip to content

Instantly share code, notes, and snippets.

@michealbenedict
michealbenedict / _.md
Created September 25, 2013 18:49
Funnel
@michealbenedict
michealbenedict / _.md
Created September 25, 2013 18:49
Funnel
@michealbenedict
michealbenedict / _.md
Created September 25, 2013 18:49
Funnel
@michealbenedict
michealbenedict / toc.json
Created February 4, 2014 04:08
Table of contents (JSON)
{
"name": "Book of modern frontend tooling",
"path": "chapters/",
"toc": [
{
"name": "Introduction",
"path": "introduction.md"
},
{
"name": "Build Systems",
@michealbenedict
michealbenedict / d3.sankey.js
Created December 2, 2015 03:26 — forked from emeeks/d3.sankey.js
Sankey Particles IV
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;