Skip to content

Instantly share code, notes, and snippets.

@hemulin
hemulin / _.md
Created March 29, 2013 19:26
Tributary inlet
@hemulin
hemulin / _.md
Created March 13, 2013 20:51
Tributary inlet
@hemulin
hemulin / _.md
Created March 6, 2013 09:38
Tributary inlet
@hemulin
hemulin / _.md
Created March 5, 2013 12:15
Tributary inlet
@hemulin
hemulin / _.md
Created February 4, 2013 22:14
Tributary inlet
@hemulin
hemulin / config.json
Created December 19, 2012 15:55
Another Inlet
{"description":"Another Inlet","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"edit","display_percent":0.7,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false}
@hemulin
hemulin / config.json
Created December 17, 2012 19:44
Another Inlet
{"description":"Another Inlet","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"edit","display_percent":0.7,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false}
@hemulin
hemulin / static_server.js
Created November 28, 2012 14:27 — forked from ryanflorence/static_server.js
Node.JS static file web server. Put it in your path to fire up servers in any directory, takes an optional port argument.
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);
@hemulin
hemulin / index.html
Created November 26, 2012 15:40
canvas easter egg to ex3 internet
<html>
<head>
<title>canvas2</title>
<style type="text/css">
</style>
</head>
<body>
<canvas width="800" height="450"></canvas>
<script type="application/javascript">
var context = document.getElementsByTagName('canvas')[0].getContext('2d');
@hemulin
hemulin / _.md
Created November 26, 2012 14:05
Another Inlet