Skip to content

Instantly share code, notes, and snippets.

View thomasdunn's full-sized avatar
🏠
Working from home

Tom Dunn thomasdunn

🏠
Working from home
  • Art of Context
  • Boston, MA, USA
View GitHub Profile
@thomasdunn
thomasdunn / mp4tomp3.bat
Created February 4, 2016 05:33 — forked from nkmrgk/mp4tomp3.bat
convert mp4 to mp3
@echo off
setlocal
set FFMPEG="C:\tools\ffmpeg\bin\ffmpeg.exe"
set LAME=lame.exe
set touch=touch.exe
if "%1"=="" echo usage: mp4tomp3 {directory} && goto err
if not exist %1 echo %1: Not found. && goto err
pushd %1
@thomasdunn
thomasdunn / index.html
Last active August 29, 2015 14:18 — forked from couchand/index.html
Voronoi-based item selection
<html>
<head>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js"></script>
</head>
<body>
<div id="chart">
</div>
<script type="text/javascript">
var w = 960,
@thomasdunn
thomasdunn / README.md
Last active August 29, 2015 14:16 — forked from mbostock/.block
Throbber