Skip to content

Instantly share code, notes, and snippets.

View coolaj86's full-sized avatar
😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell

AJ ONeal coolaj86

😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell
View GitHub Profile
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) {
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);
}
@coolaj86
coolaj86 / promise.js
Created October 26, 2010 02:17
Promises/KISS example
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() {
@coolaj86
coolaj86 / cors.js
Created October 29, 2010 08:37
CORS / XHR2 middleware for Node.js
/*
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
@coolaj86
coolaj86 / cors.js
Created October 29, 2010 08:41
CORS / XHR2 middleware for Node.js
/*
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
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
@coolaj86
coolaj86 / gist:705497
Created November 18, 2010 19:53
ntpdate fails to compile
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"
@coolaj86
coolaj86 / test-fail.json
Created December 8, 2010 18:57
JSON parse error
test-fail.js passes jslint.com, fails jsonlint.com, and fails to parse with Node.js JSON.parse.
@coolaj86
coolaj86 / fails in 30-min with write().c
Created December 21, 2010 07:32
Mem leak in /dev/shm
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;
@coolaj86
coolaj86 / node_reinstall.sh
Last active September 24, 2015 16:17
Install Node.JS on Mac OS X or Linux
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