Skip to content

Instantly share code, notes, and snippets.

View zanarmstrong's full-sized avatar

zan zanarmstrong

View GitHub Profile
@zanarmstrong
zanarmstrong / animatedMouseMove.css
Last active September 8, 2015 03:48
jittery line (original)
body {
background-color: #323232;
}
p {
color: white;
font-family: 'Raleway', sans-serif;
}
.mainPath {
city day cloudCover heatIndex normalTemperature windChill aveWindSpeed hour
ATLANTA 1 412 418 418 371 86 0
ATLANTA 1 421 411 411 363 86 1
ATLANTA 1 436 406 406 357 85 2
ATLANTA 1 442 401 401 350 86 3
ATLANTA 1 467 397 397 346 87 4
ATLANTA 1 457 392 392 340 86 5
ATLANTA 1 467 389 389 335 86 6
ATLANTA 1 470 387 386 331 89 7
ATLANTA 1 457 386 386 331 88 8
@zanarmstrong
zanarmstrong / everyIcon.css
Last active September 8, 2015 03:58
Homage to John Simon's Every Icon
body {
font-color: gray;
}
.squares {
stroke: gray;
stroke-width: .3;
}
p {
@zanarmstrong
zanarmstrong / README.md
Created November 2, 2015 07:04
Mergesort II: commented
@zanarmstrong
zanarmstrong / README.md
Last active November 3, 2015 04:58
visualization template based on mouse input
@zanarmstrong
zanarmstrong / index.html
Last active November 3, 2015 06:06
weather data
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="weather.css">
<body>
<div id = "description">This document reads in weather data, so you can visualize it.</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script src="weather.js"></script>
@zanarmstrong
zanarmstrong / README.md
Last active November 3, 2015 06:12
Time Data
@zanarmstrong
zanarmstrong / README.md
Last active November 3, 2015 06:28
Stock Market Data
@zanarmstrong
zanarmstrong / README.md
Last active November 7, 2015 05:04
visualization template based on mouse input
@zanarmstrong
zanarmstrong / index.html
Last active November 7, 2015 05:13
Finding the data transformation
// based on basic block builder template
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width: 100%; height: 100%; }
</style>
</head>