Skip to content

Instantly share code, notes, and snippets.

View lhoworko's full-sized avatar

Lee Howorko lhoworko

  • Edmonton Alberta Canada
View GitHub Profile
@lhoworko
lhoworko / index.html
Last active August 29, 2015 14:25
Conway's Game of Life
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Game of Life</title>
<style>
rect.square {
fill: #FFFFFF;
stroke: #000000;
stroke-width: 1;
@lhoworko
lhoworko / index.html
Last active August 29, 2015 14:13
D3 Scatter Plot Transition
<!doctype html>
<head>
<meta charset="utf-8">
<title>D3 Scatter Plot</title>
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
@lhoworko
lhoworko / index.html
Last active August 29, 2015 14:12
Line Transition
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis path, .axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.axis text {
@lhoworko
lhoworko / index.html
Last active August 29, 2015 14:11
Loading Animation
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.ball {
fill: white;
stroke: black;
stroke-width: 2;
}
</style>
<body>
@lhoworko
lhoworko / canada.json
Last active November 28, 2017 23:01
Map Hover
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lhoworko
lhoworko / index.html
Last active August 29, 2015 14:11
Analog Clock
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.clockGroup { stroke: #000; stroke-width: 2; }
.hand { corner-radius: 2 }
.hand#hour { stroke-width: 10 }
.hand#minute { stroke-width: 5 }
.hand#second { stroke-width: 2 }