Skip to content

Instantly share code, notes, and snippets.

@jfreels
jfreels / README.md
Last active May 27, 2021 09:39
d3js: Create an HTML select box using d3.js and create a paragraph referencing the selection.

d3js: Create an HTML select box using d3.js and create a paragraph referencing the selection.

@ykarikos
ykarikos / png2svg.sh
Created June 7, 2012 22:17
Convert png to svg using imagemagick and potrace
#!/bin/bash
if [ "$1" == "" ]; then
echo Usage: $0 pngfile
exit 0;
fi
FILE=`basename $1 .png`
if [ ! -e $FILE.png ]; then