Skip to content

Instantly share code, notes, and snippets.

@heyjordn
heyjordn / README.md
Created February 7, 2016 05:26 — forked from mbostock/.block
Choropleth

This choropleth encodes unemployment rates from 2008 with a quantize scale ranging from 0 to 15%. A threshold scale is a useful alternative for coloring arbitrary ranges.

@heyjordn
heyjordn / README.md
Created February 7, 2016 05:27 — forked from mbostock/.block
Force-Directed States of America

Click and drag to move states around.

So, what happens when you use the Delaunay triangulation to compute links between the centroids of the lower 48 United States of America? And then you simulate the whole thing as a force-directed graph? This, it turns out! Built with D3.

gistup
gistup
<html>
<meta charset="utf-8">
<style>
/* CSS goes here. */
line {
stroke: #999;
stroke-width: .5px;
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@heyjordn
heyjordn / ISO3166-1.alpha2.json
Created August 19, 2021 18:40 — forked from ssskip/ISO3166-1.alpha2.json
json of country codes (ISO 3166-1 alpha-2) and corresponding names
{
"AF": "Afghanistan",
"AX": "Aland Islands",
"AL": "Albania",
"DZ": "Algeria",
"AS": "American Samoa",
"AD": "Andorra",
"AO": "Angola",
"AI": "Anguilla",
"AQ": "Antarctica",
@heyjordn
heyjordn / release.yml
Created November 15, 2022 15:31
Github Release Action for publishing to DockerHub via tags
---
name: "Release"
on:
push:
tags:
- "v*"
jobs:
release-app: