I hereby claim:
- I am fishrock123 on github.
- I am fishrock (https://keybase.io/fishrock) on keybase.
- I have a public key whose fingerprint is FD3A 5288 F042 B685 0C66 B31F 09FE 4473 4EB7 990E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// Site 404 | |
app.use(function(req, res, next) { | |
res.status(404) | |
if (req.accepts('html')) { | |
res.type('html') | |
res.render('404', { | |
url: req.get('host') + req.url, | |
user: req.user, | |
version: version |
/Users/Jeremiah/Documents/node-voicechat | |
Jeremiahs-MacBook-Pro:node-voicechat Jeremiah$ npm install node-core-audio-0.3.5.tgz | |
npm WARN package.json [email protected] No repository field. | |
npm WARN package.json [email protected] No README data | |
npm http GET https://registry.npmjs.org/audio-streamer | |
npm http GET https://registry.npmjs.org/fft | |
npm http GET https://registry.npmjs.org/portfinder/0.2.1 | |
npm http 200 https://registry.npmjs.org/portfinder/0.2.1 | |
npm http 200 https://registry.npmjs.org/audio-streamer | |
npm http GET https://registry.npmjs.org/portfinder/-/portfinder-0.2.1.tgz |
var specs = require('./Your_Json_File_Here.json') | |
, out = {} | |
, fs = require('fs') | |
function iterateObjectAlphabetically(obj, callback) { | |
var arr = [] | |
, i | |
for (i in obj) { | |
if (obj.hasOwnProperty(i)) { |
function Other(args) { | |
Original.call(this, args); | |
}; | |
inherits(Other, Original); | |
// Yes, I know they are not actually "classes" | |
Other.prototype.classMethod = function() { | |
// called like so: | |
// var other = New Other() | |
// other.classMethod() |
/* | |
* @author "graphxdziner" on board.flashkit.com | |
* Source: http://board.flashkit.com/board/showthread.php?728847-convert-hex-value-to-colormatrix-array&s=a432383a54d4eeed74bf800b22ee0f83&p=3854541&viewfull=1#post3854541 | |
*/ | |
function setColor(mc, r, g, b, a) | |
{ | |
var matrix = | |
[ r, 0, 0, 0 | |
, 0, g, 0, 0 |
acko.net | |
biolitestove.com | |
cheezburger.com | |
dust514.com | |
expressjs.com | |
flickr.com | |
github.com | |
humblebundle.com | |
icloud.com | |
jquery.com |
var content_types = [ | |
'application/atom+xml', | |
'application/ecmascript', | |
'application/EDI-X12', | |
'application/EDIFACT', | |
'application/json', | |
'application/javascript', | |
'application/octet-stream', | |
'application/ogg', | |
'application/pdf', |
// based off of https://gist.github.com/creationix/5544019 | |
// these could probably be condensed more, but I'm just doing this | |
// quickly | |
exports = module.exports = run; | |
exports.call = call; | |
exports.invoke = invoke; | |
exports.bind = bind; |