Skip to content

Instantly share code, notes, and snippets.

View thole's full-sized avatar

thole

  • Hamburg
View GitHub Profile
@thole
thole / index.html
Last active November 1, 2015 18:41
yearly bar chart
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<style>
rect {
fill: steelblue;
}
text {
@thole
thole / index.html
Last active November 1, 2015 18:42
wups
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<style>
circle.wup {
stroke-width: 0.5;
fill:steelblue;
@thole
thole / data.json
Last active November 1, 2015 22:06
sparklines
[
{
"address": "order@example.org",
"incoming": [
{
"timestamp": 1577833500000,
"incoming": 0
},
{
"timestamp": 1577833800000,
@thole
thole / index.html
Last active November 2, 2015 20:57
stream
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<style>
text {
font-family:sans-serif;
fill:#636363;
font-size: 8pt;
@thole
thole / d3.csv
Last active November 5, 2015 22:45
annual rings
commitDate commits
Fri Jul 3 20:05:41 2015 -0700 1
Fri Jul 3 20:03:11 2015 -0700 1
Fri Jul 3 19:59:48 2015 -0700 1
Fri Jul 3 19:59:03 2015 -0700 1
Fri Jul 3 19:58:25 2015 -0700 1
Fri Jul 3 19:56:49 2015 -0700 1
Tue May 19 07:40:12 2015 -0700 1
Tue May 19 13:23:15 2015 +0300 1
Tue May 12 20:09:35 2015 -0700 1
@thole
thole / fische_2014.csv
Last active November 14, 2015 20:44
circles
fisch betriebe menge
Gemeiner Karpfen 3812 5284
Regenbogenforelle 2501 8465
Lachsforelle 260 1470
Elsässer Saibling 268 1542
Bachforelle 418 675
Europäischer Aal 17 926
Afrikanischer Raubwels 7 876
@thole
thole / dialogs.csv
Last active November 14, 2015 20:46
parallel dialogs
START END
2013-04-28 00:00:26 2013-04-28 00:00:40
2013-04-28 00:11:43 2013-04-28 00:20:50
2013-04-28 00:19:47 2013-04-28 00:22:15
2013-04-28 00:53:43 2013-04-28 00:53:59
2013-04-28 00:54:49 2013-04-28 00:57:30
2013-04-28 06:26:12 2013-04-28 06:27:32
2013-04-28 07:14:56 2013-04-28 07:14:56
2013-04-28 07:17:02 2013-04-28 07:17:02
2013-04-28 07:20:23 2013-04-28 07:20:23
@thole
thole / Makefile
Last active November 29, 2015 22:23
weathercircles
prepare:
sed -i '' 's/Max TemperatureC/maxtemperature/g' data/*.csv
sed -i '' 's/Mean TemperatureC/meantemperature/g' data/*.csv
sed -i '' 's/Min TemperatureC/mintemperature/g' data/*.csv
sed -i '' 's/CET/cet/g' data/*.csv
download: data/hamburg2013.csv data/kopenhagen2013.csv data/oslo2013.csv data/stockholm2013.csv
data/hamburg2013.csv:
@thole
thole / index.html
Last active November 29, 2015 22:29
calendar - yearly
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<title>yearly</title>
<head>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="//thole.github.io/lib/colorbrewer/colorbrewer.js"></script>
<style type="text/css">
text {
@thole
thole / index.html
Last active November 29, 2015 22:30
calendar - daily
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Calendar</title>
<script src="//d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.js"></script>
<style>