Skip to content

Instantly share code, notes, and snippets.

View thole's full-sized avatar

thole

  • Hamburg
View GitHub Profile
@thole
thole / bresparisbres2011.csv
Last active October 20, 2018 07:10
paris brest paris
Time Name Surname country gender Mach. CLUB
89H09 4450 AAKER THOMAS US M VE SEATTLE INTERNATIONAL RANDONNEURS
88H37 4433 AAMODT CRAIG US M VE TWIN CITIES BICYCLING CLUB
73H19 1510 AARNSETH JAN SE M VE HISINGENS CK
86H40 4474 AARON DANIEL US M VE NEW JERSEY RANDONNEURS
59H30 1931 ABAD PASTOR HECTOR ES M VE PROBIKE TEAM BCN
68H12 257 ABADIE CHRISTOPHE FR M VE Amicale Laique Vallon en Sully
88H35 6396 ABBATE ALAIN US M TM RANDONNEURS USA
88H35 6395 ABBATE VIKTORIYA US F TM RANDONNEURS USA
45H29 1938 ABERASTURI GUILLERMO ES M VE CICLOS SPORT
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
stroke-width: 1.5px;
}
</style>
<body>
@thole
thole / index.html
Last active October 20, 2018 07:03
warp
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var nodes = d3.range(200).map(function() { return {radius: Math.random() * 12 + 4}; }),
@thole
thole / bikeparser.js
Last active October 20, 2018 07:16
bahnrad hamburg transfer
var fs=require('fs');
var dir='history';
var data={};
var cache = {};
function countOccurence(array,name){
var result = 0;
array.forEach(function(d){
@thole
thole / index.html
Last active October 20, 2018 07:20
circle
<!DOCTYPE html>
<html>
<head>
<script src="//d3js.org/d3.v3.min.js"></script>
</head>
<body>
<div>
<div class="chart"></div>
</div>
@thole
thole / index.html
Last active October 20, 2018 07:17
drop
<!DOCTYPE html>
<html>
<head>
<script src="//d3js.org/d3.v3.min.js"></script>
</head>
<body>
<div>
<div class="chart"></div>
</div>
@thole
thole / index.html
Last active October 20, 2018 07:17
color mix balls
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<style>
body {
font: 11px sans-serif;
background-color: #222
}
@thole
thole / ParisRoubaix.csv
Last active October 21, 2018 18:40
paris robaix speeds
year distance avgspeed
1896 280 30.162
1897 280 28.124
1898 268 32.599
1899 268 31.976
1900 268 37.352
1901 280 25.862
1902 268 28.088
1903 268 29.104
1904 268 32.518
@thole
thole / dot.png
Last active April 27, 2016 19:08
dot.png
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var nodes = d3.range(1000).map(function() { return {radius: 2}; }),