Skip to content

Instantly share code, notes, and snippets.

View micahscopes's full-sized avatar
🐢

Micah micahscopes

🐢
View GitHub Profile
@micahscopes
micahscopes / .block
Last active March 21, 2017 06:32 — forked from mbostock/.block
D3 rollup-plugin-node-resolve trouble with browser: true and d3-request
license: gpl-3.0
@micahscopes
micahscopes / .block
Last active October 26, 2016 18:17 — forked from mbostock/.block
Arc Piano
license: gpl-3.0
@micahscopes
micahscopes / .block
Created October 12, 2016 04:45 — forked from mbostock/.block
General Update Pattern, III
license: gpl-3.0
@micahscopes
micahscopes / .block
Created October 12, 2016 04:39 — forked from mbostock/.block
Force Dragging I
license: gpl-3.0
height: 600
@micahscopes
micahscopes / .block
Created October 12, 2016 04:36 — forked from mbostock/.block
Force-Directed Tree
license: gpl-3.0
height: 960
@micahscopes
micahscopes / squash.py
Last active February 3, 2016 06:39
flatten nested lists/tuples
squash = lambda l: reduce(lambda x,y: x+y,map(lambda e: squash(e) if isinstance(e,(list,tuple)) else [e], l), [])
squash([1,2,(3,[4,5])]) # => [1,2,3,4,5]
# an real world example ;)
"\n".join(squash([header,body,footer]))
# => <html>\n<body><h1>Hello World!</h1></body>\n</html>
# observe that the sections could be any kind of mess of nested arrays.
# but in the end, all we really care about is that they get strung together
<html>
<body>
<h1>!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</h1>
</body>
</html>

Click in the open space to add a node, drag from one node to another to add an edge.
Ctrl-drag a node to move the graph layout.
Click a node or an edge to select it.

When a node is selected: R toggles reflexivity, Delete removes the node.
When an edge is selected: L(eft), R(ight), B(oth) change direction, Delete removes the edge.

To see this example as part of a larger project, check out Modal Logic Playground!

@micahscopes
micahscopes / index.html
Last active August 29, 2015 14:00
rock paper scissors -> RGB -> FM modulation (WebAudio/WebGl a/v synthesis)
<html><head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<title>Rock Paper Scissor battling in RGB, FM modulating three sine waves | WebGL GPGPU + WebAudio</title>
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec3 aPos;
attribute vec2 aTexCoord;
varying vec2 uv;
varying vec2 uv_orig;
void main(void) {
gl_Position = vec4(aPos, 1.);
@micahscopes
micahscopes / index.html
Last active February 8, 2022 16:54
A/V hybrid synth (routes pixels from a WebGL to WebAudio)
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<title>reaction diffusion space ship (a/v synth)</title>
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec3 aPos;
attribute vec2 aTexCoord;
varying vec2 pixel;
void main(void) {
gl_Position = vec4(aPos, 1.);