Skip to content

Instantly share code, notes, and snippets.

View AlexDaGr8's full-sized avatar

Alex Hinton AlexDaGr8

  • Washington, D.C.
View GitHub Profile
@AlexDaGr8
AlexDaGr8 / index.html
Last active January 23, 2020 21:43
5000 movie database... just playing around
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
@AlexDaGr8
AlexDaGr8 / WMATA2.csv
Last active April 4, 2019 15:01
Interactive and attempting to be more DRY with the code
SeqNum Time Description Operator EntryLocation ExitLocation Product RemRides Change Balance
8 1/4/16 8:38 Sale Metrorail Tenleytown-AU StoredValue FF 10.00 14.35
9 1/4/16 8:39 Sale Metrorail Tenleytown-AU StoredValue FF 25.00 29.35
10 1/4/16 8:40 Entry Metrorail Tenleytown-AU StoredValue FF 0.00 29.35
11 1/4/16 9:01 Exit Metrorail Tenleytown-AU L'Enfant Plza N StoredValue FF (3.05) 26.30
12 1/4/16 16:44 Entry Metrorail L'Enfant Plza N StoredValue FF 0.00 26.30
13 1/4/16 16:56 Exit Metrorail L'Enfant Plza N Farragut N NW StoredValue FF (2.15) 24.15
14 1/4/16 17:25 Entry Metrorail Farragut N NW StoredValue FF 0.00 24.15
15 1/4/16 17:37 Exit Metrorail Farragut N NW Tenleytown-AU StoredValue FF (2.45) 21.70
0 1/5/16 8:50 Entry Metrorail Tenleytown-AU StoredValue FF 0.00 21.70
@AlexDaGr8
AlexDaGr8 / README.md
Last active December 17, 2018 16:42
Animated area chart with linear gradients

Tried to emulate something seen by Graphiq.

@AlexDaGr8
AlexDaGr8 / .block
Last active December 14, 2018 16:50
Linking scatter plots and bar charts
license: mit
@AlexDaGr8
AlexDaGr8 / .block
Last active December 10, 2018 18:28
Transition Easing Comparison in v4
license: mit
@AlexDaGr8
AlexDaGr8 / .block
Last active December 6, 2018 22:25
fresh block
license: mit
@AlexDaGr8
AlexDaGr8 / index.html
Created October 10, 2018 18:58
My Formula 1 Championship Standings
<!DOCTYPE html>
<body>
<script src='https://d3js.org/d3.v5.min.js'></script>
<script src="http://colorbrewer2.org/export/colorbrewer.js"></script>
<script>
var margin = {left: 20, top: 20, right: 20, bottom: 20},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var svg = d3.select('body').append('svg')
.attr('width', width + margin.left + margin.right)
@AlexDaGr8
AlexDaGr8 / .block
Last active October 2, 2018 19:30
X and Y force splits
license: mit
@AlexDaGr8
AlexDaGr8 / .block
Last active August 9, 2018 19:15
Color Scale
license: mit