Skip to content

Instantly share code, notes, and snippets.

@stagas
stagas / favicon-test.js
Created April 18, 2011 19:33
connect/express favicon & session problem?
var express = require('express')
, app = express.createServer()
app.use(express.cookieParser())
app.use(express.session({ secret: 'foo' }))
app.use(function(req, res, next) {
console.log(req.url, typeof req.session)
next()
})
@stagas
stagas / jsondateparse.js
Created April 10, 2011 09:53
overwrite JSON.parse to deserialize dates
;(function() {
var parse = JSON.parse
JSON.parse = function(s, f) {
var ISO = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/
return parse(s, f ? f : function(key, value) {
return typeof value === 'string'
? ISO.exec(value) && new Date(value) || value
: value
})
}
@stagas
stagas / dnodedate.js
Created April 10, 2011 08:49
dnode date values bug
//
var dnode = require('dnode')
dnode({
bar: function(cb) {
cb({
foo: 'bar'
, date: new Date()
})
@stagas
stagas / withtest.js
Created April 5, 2011 22:20
with undefined foo test
var locals = {}
var err
do {
err = undefined
try {
with(locals) {
foo
bar
$ node
> require('dnode')
WideCharToMultiByte: ▒ ▒▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒ ▒▒▒▒▒ ▒▒ ▒▒▒ ▒▒▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒.
{ [Function: dnode] connect: [Function], listen: [Function] }
>
net.js:539
socket._readWatcher.set(socket.fd, true, false);
^
TypeError: Cannot call method 'set' of null
at doConnect (net.js:539:23)
at net.js:696:9
at dns.js:171:30
at IOWatcher.callback (dns.js:53:15)
@stagas
stagas / nodie.js
Created March 3, 2011 19:19
respawns app if it dies
// mit licenced
var sys = require('util')
, child_process = require('child_process')
, proc
process.title = 'nodie'
;(function respawn(app) {
console.log('Starting', app)
@stagas
stagas / twitter_unannoying.css
Created January 28, 2011 11:09
Crops web page so that tweets have their own scrollbar.
html {
height:100% !important;
}
body {
height:110% !important;
}
.main-content {
height:0 !important;
overflow-y:scroll;
}
@stagas
stagas / how-to-run-apache-and-node.js-together-the-right-way.markdown
Created December 24, 2010 14:45
How to run Apache and Node.js together (the right way)

Step 1

Get a VPS that offers 2 or more IP addresses.

Step 2

From the WHM cPanel, find the menu item Service Configuration, select Apache Configuration and then click on Reserved IPs Editor.

Step 3

- if ( (qa[s].length >= 3 && typeof hwknd.projects[item.name].description !== 'undefined' && !!~hwknd.projects[item.name].description.toLowerCase().indexOf(qa[s]) ) || ( qa[s].length >= 3 && typeof hwknd.projects[item.name].name !== 'undefined' && !!~hwknd.projects[item.name].name.toLowerCase().indexOf(qa[s]) ) || ( typeof hwknd.languages[item.name] !== 'undefined' && !!~this.searchKeys(hwknd.languages[item.name], qa[s]) ) || ( qa[s].length >= 3 && typeof hwknd.readmes[item.name] !== 'undefined' && !!~hwknd.readmes[item.name].toLowerCase().indexOf(qa[s]) ) )