Interactive Moiré pattern implemented in D3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var perlin = require('perlin').noise.perlin3 | |
var fill = require('ndarray-fill') | |
var continuous = require('ndarray-continuous') | |
var stl = require('ndarray-stl') | |
var zeros = require('zeros') | |
var scale = 0.075 | |
var threshold = 0.125 | |
var field = continuous({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = require('url') | |
var websocket = require('websocket-stream') | |
var engine = require('voxel-engine') | |
var duplexEmitter = require('duplex-emitter') | |
console.log('starting', 1) | |
var socket = websocket('ws://' + url.parse(window.location.href).host) | |
var emitter = duplexEmitter(socket) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Sample usage: | |
//var pngGen = require('./png-gen').loadImage('heightmap.png'); | |
//Assign this as your voxel.js generate function. | |
var fs = require('fs'), | |
PNG = require('pngjs').PNG, | |
theImage, | |
heightMod = 32 | |
function loadImage(url, cb){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var serial = require('./lib/serial') | |
, Tpad = require('./lib/tpad') | |
, color = require('color') | |
; | |
serial.init() | |
var spinnerTimer = function () {} | |
serial.on('searching', function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
circle { | |
stroke: #fff; | |
} | |
</style> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Everything is possible with CouchDB." | |
"If you give a database to every user, you get scaling for free." | |
"Run your Couch on port 80." | |
"Relaaaaaaaaaax." | |
"The only limit is your file descriptors" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conditionals | |
( false :) | |
console.log "if" | |
:( true ) | |
console.log "else if" | |
:() | |
console.log "else" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
category : "category_name", // Required Single category from (http://opencivicdata.com/#categories-wg) | |
meta : { // Optional: Simple Dublin Core Metadata Element Set | |
title : "", | |
creator : "", | |
subject : "", | |
description : "", | |
publisher : "", | |
contributor : "", | |
date : "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
title: "title of data", // eg: 'the xyz murder', 'blizzard of 2011', 'chelmsburry bike path', 'MBTA green line', 'bus stop schedule event' etc | |
type: "type of data", // eg: event, physical feature | |
set: "what data set data is from if any", // if data is from national data set e.g. 2000 census | |
category: [category, category], // develop this taxonomy | |
description: "description of data", // text description of data | |
start: RFC3339DateTime, // optional start date | |
end: RFC3339DateTime, // optional end date | |
geometry : {}// optional geojson location feature (http://geojson.org/geojson-spec.html) | |
} |