Skip to content

Instantly share code, notes, and snippets.

@Herst
Herst / .block
Last active February 19, 2018 17:55 — forked from mbostock/.block
Click vs. (a great deal of) Drag(ging)
license: gpl-3.0
@Herst
Herst / .block
Created October 2, 2017 16:22 — forked from mbostock/.block
Pan & Zoom III
license: gpl-3.0
@Herst
Herst / README.md
Last active January 4, 2018 09:52 — forked from veltman/README.md
Argyle <pattern>

Infinite argyle with random ColorBrewer and d3 4.0 color scales.

Fork of but drawing into a pattern.

@Herst
Herst / find_isolated_functions.py
Last active October 22, 2016 13:44 — forked from elazarg/find_isolated_functions.py
A small script that warns about functions that are not called from within the code (fork from https://gist.github.com/Herst/287aa233c0acba6ed2bc2d093dec786d ported to Python 2)
#!/usr/bin/python
from contextlib import contextmanager
from ast import NodeVisitor
import ast
import sys
import glob
class Flags:
include_strings = True