Skip to content

Instantly share code, notes, and snippets.

@duncangraham
duncangraham / Makefile
Last active August 29, 2015 13:57 — forked from mbostock/.block
GENERATED_FILES = \
unemployment.tsv
.PHONY: all clean
all: $(GENERATED_FILES)
clean:
rm -rf -- $(GENERATED_FILES)
@duncangraham
duncangraham / index.html
Last active June 26, 2020 11:19
a svg grid of stunning beauty
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%">
<defs>
<pattern id="grid" width="11" height="11" patternUnits="userSpaceOnUse">
<rect fill="white" x="0" y="0" width="9" height="9"/>
<rect fill="aliceblue" x="10" y="0" width="1" height="10"/>
<rect fill="aliceblue" x="0" y="10" width="11" height="1"/>
</pattern>
</defs>
<rect fill="url(#grid)" x="0" y="0" width="100%" height="100%"/>
</svg>