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
| #include "ofMain.h" | |
| #include "ofApp.h" | |
| #include "ofAppGlutWindow.h" | |
| #include "ofxKinect.h" | |
| int main() { | |
| ofAppGlutWindow window; | |
| ofSetupOpenGL(&window, 1024, 768, OF_WINDOW); | |
| ofRunApp(new ofApp()); | |
| } |
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
| /** | |
| * User constructor. | |
| */ | |
| function User(firstName, lastName) { | |
| this.firstName = firstName; | |
| this.lastName = lastName; | |
| } | |
| /** |
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
| { | |
| Server.local.makeGui; | |
| Server.internal.makeGui; | |
| } | |
| // SinOsc: unit generator | |
| // ar, audio-rate | |
| { SinOsc.ar(440, 0, 0.3) }.play(); |
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
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express') | |
| , routes = require('./routes') | |
| , socket = require('socket.io') | |
| , RedisStore = socket.RedisStore | |
| , cluster = require('cluster'); |
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
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express') | |
| , routes = require('./routes') | |
| , cluster = require('cluster'); | |
| var app = module.exports = express.createServer() | |
| , io = require('./socket')(app); |
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
| #!/bin/sh | |
| # | |
| # rcsvi | |
| # | |
| # @author Seiya Konno <seiya@uniba.jp> | |
| # | |
| target=$1 |
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
| .DS_Store | |
| ._* | |
| node_modules/ |
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
| node_modules | |
| .DS_Store | |
| ._* |
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
| > Object.keys(global).forEach(function(key) { console.log(require('util').inspect(global[key])); }); | |
| [Function: ArrayBuffer] | |
| { [Function: Int8Array] BYTES_PER_ELEMENT: 1 } | |
| { [Function: Uint8Array] BYTES_PER_ELEMENT: 1 } | |
| { [Function: Int16Array] BYTES_PER_ELEMENT: 2 } | |
| { [Function: Uint16Array] BYTES_PER_ELEMENT: 2 } | |
| { [Function: Int32Array] BYTES_PER_ELEMENT: 4 } | |
| { [Function: Uint32Array] BYTES_PER_ELEMENT: 4 } | |
| { [Function: Float32Array] BYTES_PER_ELEMENT: 4 } | |
| { [Function: Float64Array] BYTES_PER_ELEMENT: 8 } |
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 buffer = new Buffer(0x0F); | |
| undefined | |
| > buffer | |
| <Buffer 7d 2c 0a 20 20 47 4c 4f 42 41 4c 3a 20 5b 43> | |
| > | |
| undefined | |
| > var arrayBuffer = new ArrayBuffer(0x0F); | |
| undefined | |
| > arrayBuffer | |
| { '0': 0, |