Skip to content

Instantly share code, notes, and snippets.

@tophtucker
tophtucker / .block
Last active March 12, 2017 13:36 — forked from mbostock/.block
Zoomable Icicle (d3 v4)
license: gpl-3.0
@tophtucker
tophtucker / .block
Last active January 15, 2017 23:44 — forked from mbostock/.block
CMYK Wave Motion
license: gpl-3.0
@tophtucker
tophtucker / .block
Last active December 27, 2016 05:37 — forked from mbostock/.block
Animate Voronoi site to cell
license: gpl-3.0
@tophtucker
tophtucker / .block
Last active September 5, 2016 19:13 — forked from mbostock/.block
Trump support vs. distance from sea
license: gpl-3.0
@tophtucker
tophtucker / .block
Last active June 2, 2016 02:49 — forked from mbostock/.block
Force words
license: gpl-3.0
height: 500
@tophtucker
tophtucker / README.md
Created May 19, 2016 22:24 — forked from veltman/README.md
Mystery box
@tophtucker
tophtucker / README.md
Last active May 12, 2016 04:03 — forked from mbostock/.block
Survivor with Seth performance

Survivor with Seth III auction performance

function drawGCD(){
var stack = []
var a = 960 - Math.floor(Math.random()*100), b = 400 + Math.floor(Math.random()*100)
function gcd(u, v){
stack.push({u: u, v: v})
return v ? gcd(v, u % v) : u
}