- Mike Bostock (D3js author) tutos & examples : http://bost.ocks.org/mike/
- D3.js wiki : https://github.com/mbostock/d3/wiki
- Tutorials, screencasts, newsletters : https://www.dashingd3js.com/
- Some tutorials : http://alignedleft.com/tutorials/d3
- another collection : http://www.pinterest.com/gelicia/resources-for-learning-d3js/
This file contains hidden or 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 db = require('orchestrate')('MY DATABASE KEY') | |
var gpio = require("gpio"); | |
var gpio4 = gpio.export(4, { | |
direction: "in", | |
ready: function() { | |
} | |
}); |
This file contains hidden or 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
{ | |
"name": "streamingtest", | |
"version": "0.0.1", | |
"engines": { | |
"node": ">=0.6.0" | |
}, | |
"dependencies": { | |
"express": "2.5.x", | |
"coffee-script": "1.2.x" | |
}, |
This file contains hidden or 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 keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" | |
function base64_decode(input){ | |
var output = new Array(); | |
var chr1, chr2, chr3; | |
var enc1, enc2, enc3, enc4; | |
var i = 0; | |
var orig_input = input; | |
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); | |
if (orig_input != input) |
This file contains hidden or 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
// Ported from Stefan Gustavson's java implementation | |
// http://staffwww.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf | |
// Read Stefan's excellent paper for details on how this code works. | |
// | |
// Sean McCullough [email protected] | |
/** | |
* You can pass in a random number generator object if you like. | |
* It is assumed to have a random() method. | |
*/ |
This file contains hidden or 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
Only in openFrameworks/apps/myApps/emptyExample: bin | |
Only in openFrameworks/apps/myApps/emptyExample: obj | |
Only in openFrameworks/examples/utils/conversionExample/bin: conversionExample | |
Only in openFrameworks/examples/utils/conversionExample/bin: conversionExample_debug | |
Only in openFrameworks/examples/utils/conversionExample/bin: libs | |
Only in openFrameworks/examples/utils/conversionExample/bin: readMe.txt | |
Only in openFrameworks/examples/utils/conversionExample: obj | |
Only in openFrameworks/examples/utils/fileOpenSaveDialogExample: obj | |
Only in openFrameworks/examples/utils/windowExample/bin: libs | |
Only in openFrameworks/examples/utils/windowExample/bin: readMe.txt |
This file contains hidden or 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
... |
This file contains hidden or 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 cursor = db.zomg.find() | |
while (cursor.hasNext()) { | |
var doc = cursor.next(); | |
db.zomg.update( | |
{_id : doc._id}, | |
{$set : { | |
dropoff_datetime: new Date(doc.dropoff_dateime) , | |
dropoff_latitude: new Number(doc.dropoff_latitude) , | |
dropoff_longitude: new Number(doc.dropoff_longitude) , | |
fare_amount: new Number(doc.fare_amount) , |
This file contains hidden or 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
import wblut.hemesh.modifiers.*; | |
import wblut.geom.frame.*; | |
import wblut.hemesh.composite.*; | |
import wblut.core.processing.*; | |
import wblut.hemesh.tools.*; | |
import wblut.hemesh.simplifiers.*; | |
import wblut.hemesh.subdividors.*; | |
import wblut.geom.nurbs.*; | |
import wblut.core.random.*; | |
import wblut.geom.triangulate.*; |
NewerOlder