Skip to content

Instantly share code, notes, and snippets.

View michaschwab's full-sized avatar
:octocat:

Micha Schwab michaschwab

:octocat:
View GitHub Profile
license: gpl-3.0
height: 600
@michaschwab
michaschwab / .block
Last active November 6, 2017 21:59 — forked from mbostock/.block
Choropleth with EasyPZ Pan & Zoom
license: gpl-3.0
height: 600
border: no
@michaschwab
michaschwab / .block
Last active November 7, 2017 22:09 — forked from mbostock/.block
Force-Directed Graph with EasyPZ Pan & Zoom (Manual Version)
license: gpl-3.0
height: 600
@michaschwab
michaschwab / README.md
Last active November 8, 2017 18:53 — forked from puzzler10/README.md
Zoomable Force Directed Graph d3v4, simplified using EasyPZ

This graph combines force directed graphs, zooming and dragging, and the explanation behind the graph is available here.

@michaschwab
michaschwab / README.md
Created November 13, 2017 19:33
Simplified Massachusetts City Map using d3 v4
@michaschwab
michaschwab / index.html
Created July 9, 2018 00:21
custom shape voronoi
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Custom Shape Voronoi</title>
</head>
<body>
@michaschwab
michaschwab / index.html
Created July 10, 2018 05:19
custom size and shape voronoi 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Custom Shape Voronoi</title>
</head>
<body>
@michaschwab
michaschwab / data.csv
Last active January 28, 2019 01:08
Stock-Style Dynamic Line Chart With Zoom
date close
1-May-12 58.13
30-Apr-12 53.98
27-Apr-12 67.00
26-Apr-12 89.70
25-Apr-12 99.00
24-Apr-12 130.28
23-Apr-12 166.70
20-Apr-12 234.98
19-Apr-12 345.44
@michaschwab
michaschwab / index.html
Last active January 29, 2019 15:48
Two.js worker test
<html>
<head>
</head>
<body>
<script src="two.js"></script>
<script src="main.js"></script>
</body>
</html>
@michaschwab
michaschwab / index.html
Created February 11, 2019 17:02
Animated, fading line following a path
<html>
<head>
<style>
body {
background: #000;
}
line {
stroke: #fff;
}
</style>