Skip to content

Instantly share code, notes, and snippets.

@tobiasburri
tobiasburri / index.html
Last active August 29, 2015 14:22
Chromatic Circle
<!DOCTYPE html>
<meta charset="utf-8">
<body style="background-color:#1C1C1C">
<div class="svg-container" style="position:absolute; top:10px; left:250px"></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var
container,
svg,
@tobiasburri
tobiasburri / index.html
Last active August 29, 2015 14:24
Sparkling Rectangles
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://backbonejs.org/backbone.js"></script>
@tobiasburri
tobiasburri / airports.json
Last active October 30, 2018 01:26
Airport Data
This file has been truncated, but you can view the full file.
[{"City":"Postville","DBTZ":"A","Name":"Postville Airport","Country":"Canada","IATA/FAA":"YSO","Longitude":"-59.785278","ICAO":"CCD4","Airport ID":"7252","Latitude":"54.910278","Timezone":"223","DST":"-4","destinations":["5492","188","5502"]},{"City":"Osubi","DBTZ":"U","Name":"Warri Airport","Country":"Nigeria","IATA/FAA":"QRW","Longitude":"5.45","ICAO":"DNSU","Airport ID":"6972","Latitude":"5.31","Timezone":"50","DST":"1","destinations":["260","273"]},{"City":"Rockland","DBTZ":"A","Name":"Knox County Regional Airport","Country":"United States","IATA/FAA":"RKD","Longitude":"-69.0992303","ICAO":"KRKD","Airport ID":"4026","Latitude":"44.0601111","Timezone":"56","DST":"-5","destinations":["3448"]},{"City":"Jacksn Hole","DBTZ":"A","Name":"Jackson Hole Airport","Country":"United States","IATA/FAA":"JAC","Longitude":"-110.73775","ICAO":"KJAC","Airport ID":"4027","Latitude":"43.607333333","Timezone":"6451","DST":"-7","destinations":["3536","3751"]},{"City":"Flores","DBTZ":"U","Name":"Mundo Maya International","Count
@tobiasburri
tobiasburri / index.html
Last active January 1, 2016 16:38
Square Loop
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<style>
body {
@tobiasburri
tobiasburri / index.html
Last active January 7, 2016 00:58
Chromatic Square Loop
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<style>
body {
@tobiasburri
tobiasburri / index.html
Last active January 16, 2016 12:45
Circle Loop
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<style>
.container {
width: 495px;
@tobiasburri
tobiasburri / index.html
Last active January 18, 2016 19:58
Full Moon
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<style>
body {
background-color:#01002A;
@tobiasburri
tobiasburri / index.html
Last active March 15, 2016 21:24
Spider Charts
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<style>
.wrapper {
@tobiasburri
tobiasburri / index.html
Last active April 15, 2016 19:12
Time series chart with dynamic axes
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>