Skip to content

Instantly share code, notes, and snippets.

@tophtucker
tophtucker / .block
Last active May 12, 2016 02:43
Diagonal II
height: 600
@tophtucker
tophtucker / .block
Last active September 15, 2018 21:42
Diagonal
height: 960
@tophtucker
tophtucker / .block
Last active May 12, 2016 20:50
Photozoom
scroll: yes
@tophtucker
tophtucker / flyer.png
Last active September 13, 2019 10:09
Drifting flyers on a torus
flyer.png
@tophtucker
tophtucker / index.html
Last active May 12, 2016 03:45
Timer control
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<body>
<button class="play">Play</button>
<button class="pause">Pause</button>
<button class="reset">Reset</button>
@tophtucker
tophtucker / neat.js
Last active October 8, 2017 20:28
Neat lil functions
// http://stackoverflow.com/a/4467559/120290
Number.prototype.mod = function(n) {
return ((this%n)+n)%n;
};
function lerp(array0,array1) {
var scales = d3.range(array0.length).map(function(n) {
return d3.scale.linear()
.range([array0[n], array1[n]]);
});
@tophtucker
tophtucker / index.html
Last active June 13, 2016 20:44
Slander II
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" type="text/css" href="main.css"/>
<body>
@tophtucker
tophtucker / index.html
Last active May 12, 2016 03:58
Slander
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" type="text/css" href="main.css"/>
<body>
@tophtucker
tophtucker / d3-jetpack.js
Created February 27, 2016 01:36
Archimedean text III
(function() {
function jetpack(d3) {
d3.selection.prototype.translate = function(xy) {
return this.attr('transform', function(d,i) {
return 'translate('+[typeof xy == 'function' ? xy(d,i) : xy]+')';
});
};
d3.transition.prototype.translate = function(xy) {
@tophtucker
tophtucker / Archimedes.png
Last active February 27, 2016 01:41
Archimedean text II
Archimedes.png