Skip to content

Instantly share code, notes, and snippets.

View max-mapper's full-sized avatar
🔰
✌( ͡ᵔ ͜ʖ ͡ᵔ )✌

Max max-mapper

🔰
✌( ͡ᵔ ͜ʖ ͡ᵔ )✌
View GitHub Profile
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({
@max-mapper
max-mapper / client.js
Last active December 15, 2015 15:29 — forked from timoxley/client.js
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)
//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){
@max-mapper
max-mapper / test.js
Created July 12, 2012 02:36 — forked from mikeal/gist:3095110
tmpad color pressure
var serial = require('./lib/serial')
, Tpad = require('./lib/tpad')
, color = require('color')
;
serial.init()
var spinnerTimer = function () {}
serial.on('searching', function() {
@max-mapper
max-mapper / index.html
Created February 6, 2012 17:24 — forked from mbostock/.block
Clustered Force Layout + Custom Gravity
<!DOCTYPE html>
<meta charset="utf-8">
<style>
circle {
stroke: #fff;
}
</style>
<body>
@max-mapper
max-mapper / gist:1296702
Created October 18, 2011 20:59 — forked from janl/gist:1296700
CouchDBZombo.com
"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"
@max-mapper
max-mapper / gist:1007605
Created June 4, 2011 05:14 — forked from voodootikigod/gist:1007426
BS ≈ BreakfastScript
Conditionals
( false :)
console.log "if"
:( true )
console.log "else if"
:()
console.log "else"
{
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 : "",
{
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)
}
@max-mapper
max-mapper / README.md
Created November 25, 2010 06:10 — forked from mbostock/.block

Interactive Moiré pattern implemented in D3