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 connect = require('connect'), | |
fs = require('fs'), | |
path = require('path'), | |
apps = [], | |
dirs = fs.readdirSync("./vhosts/"); | |
apps.push(connect.staticProvider(__dirname + '/public')); | |
// TODO use futures to asyncify | |
dirs.forEach(function (dir) { |
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 exec = require('child_process').exec, | |
Futures = require('futures'), | |
pload = Futures.promise(), | |
pdisk = Futures.promise(), | |
pusage = Futures.promise(); | |
function log() { | |
console.log("event happened"); | |
console.dir(arguments); | |
} |
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 Promise = require('futures'); | |
function getUnavailableData(params) { | |
var p = Promise.create({ updatable: true, timeout: Infinity, freeze: false }); | |
// p.fulfill(err, data, data, ...); | |
setInterval(askUserHowHeFeelsAboutLife, 60*60*1000, p.fulfill); | |
return p.protected(); // returns a different object which has no fulfill method | |
} | |
function useUnavailabledata() { |
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
/* | |
Here's some documentation on XMLHttpRequest Level 1 and 2 as per the | |
standard and as per implementation. | |
XHR | |
http://www.w3.org/TR/XMLHttpRequest/ | |
http://developer.apple.com/internet/webcontent/xmlhttpreq.html | |
http://msdn.microsoft.com/en-us/library/ms535874%28VS.85%29.aspx | |
XHR2 |
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
/* | |
Here's some documentation on XMLHttpRequest Level 1 and 2 as per the | |
standard and as per implementation. | |
XHR | |
http://www.w3.org/TR/XMLHttpRequest/ | |
http://developer.apple.com/internet/webcontent/xmlhttpreq.html | |
http://msdn.microsoft.com/en-us/library/ms535874%28VS.85%29.aspx | |
XHR2 |
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
U-Boot 2010.09 (Nov 11 2010 - 14:22:07) | |
OMAP3530-GP ES3.1, CPU-OPP2, L3-165MHz, Max CPU Clock 720 mHz | |
Gumstix Overo board + LPDDR/NAND | |
I2C: ready | |
DRAM: 512 MiB | |
NAND: 0 MiB | |
*** Warning - bad CRC or NAND, using default environment | |
In: serial |
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
bitbake ntpdate | |
NOTE: Handling BitBake files: \ (7237/7238) [99 %] | |
NOTE: Parsing finished. 6511 cached, 418 parsed, 309 skipped, 2 masked. | |
Build Configuration: | |
BB_VERSION = "1.8.18" | |
METADATA_BRANCH = "overo" | |
METADATA_REVISION = "f5525c9" | |
TARGET_ARCH = "arm" | |
TARGET_OS = "linux-gnueabi" |
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
test-fail.js passes jslint.com, fails jsonlint.com, and fails to parse with Node.js JSON.parse. |
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
static int capture_file_write() | |
{ | |
int fd; | |
int error_check; | |
static int buffer_counter = 0; | |
char filename[256]; | |
snprintf(filename, sizeof filename, "%scapture.output.%02d.dat", DATA_PATH, buffer_counter); | |
buffer_counter = (buffer_counter + 1) % 14; |
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
NUMBER_OF_CPU_CORES=2 | |
BASHRC=~/.bashrc # use .bash_profile on OS X | |
# Remove old Node.JS installation | |
rm ~/local/*/node* -rf | |
rm ~/.node_libraries -rf | |
sudo rm /usr/local/*/node* -rf | |
sudo rm /usr/*/node* -rf | |