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 / PseudoRandom.js
Last active April 1, 2019 04:34
For use in JUDO5
function main() {
var size = 10;
var width = getDrawingWidth() / size;
var height = getDrawingHeight() / size;
setBackgroundColor(white);
while (true) {
setColor(black);
for (var x = 0; x < width; x++) {
@thomasdunn
thomasdunn / wolfram-1d-automata.judo
Last active April 6, 2019 07:08
Wolfram 1D Automata (buggy but awesome)
var cellSize = 4;
var cellsX = getDrawingWidth() / cellSize;
var cellsY = getDrawingHeight() / cellSize;
var gen = [];
var genNext = [];
var g = 0;
var frames = 100;
function main() {

VS Code debug typescript

@thomasdunn
thomasdunn / URL
Last active April 4, 2020 03:16
Budmen face mask sheet dxf file location
https://3dprint.nih.gov/sites/default/files/models/additional_3d_model_files/IC3D%20Polysheet%20V2_19.64_0.dxf
@thomasdunn
thomasdunn / frame-content.html
Created April 6, 2020 21:20
electron iframe test content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@thomasdunn
thomasdunn / index.html
Created February 27, 2021 06:17
Pi-ano - plays the notes of Pi
<!DOCTYPE html>
<html>
<head>
<title>Pi-ano</title>
<script type="text/javascript" src="https://unpkg.com/@tonejs/midi"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]"></script>
<script type="text/javascript" src="Piano.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tonaljs/tonal/browser/tonal.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
</head>