Skip to content

Instantly share code, notes, and snippets.

View codebje's full-sized avatar

Byron Ellacott codebje

View GitHub Profile
module Search_Deep where
import Data.Bits
data Fun = And | Add | Xor | Or | Sub | Bus
data Shape = F Shape Shape | Var | Tok
data Expr a = C Fun (Expr a) (Expr a) | V a | T
data U = U
instance Show U where
showsPrec _ U = ("?" ++)
@codebje
codebje / index.html
Last active August 29, 2015 14:17 — forked from mbostock/.block
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;