Skip to content

Instantly share code, notes, and snippets.

@realazthat
realazthat / index.js
Last active September 9, 2016 01:37 — forked from mathisonian/index.js
requirebin sketch
document.body.style.margin = 0;
document.body.style.padding = 0;
const width = window.innerWidth;
const height = window.innerHeight;
const canvas = document.body.appendChild(document.createElement('canvas'))
const fit = require('canvas-fit');
const bezier = require('bezier');
@realazthat
realazthat / index.js
Last active September 9, 2016 00:48 — forked from mathisonian/index.js
requirebin sketch
document.body.style.margin = 0;
document.body.style.padding = 0;
const width = window.innerWidth;
const height = window.innerHeight;
const canvas = document.body.appendChild(document.createElement('canvas'))
const fit = require('canvas-fit');
const bezier = require('bezier');
@realazthat
realazthat / klee example
Created June 26, 2011 15:04
klee example
int main()
{
int a;
klee_make_symbolic(&a, sizeof(a));
if(a==5)
return 1;
return 0;
}