Disclaimer:
These pages about different languages / apis / best practices were mostly jotted down quckily and rarely corrected afterwards.
The languages / apis / best practices may have changed over time (e.g. the facebook api being a prime example), so what was documented as a good way to do something at the time might be outdated when you read it (some pages here are over 15 years old).
Just as a reminder.

Software developer notes about Node.js

Developer notes for Node.js

Getting SSL working for the server

For testing, create your own .pem file:
Create pem file
For the server, as options, just pass the newly created pem file as both key and cert:
var options = {
  key: fs.readFileSync('/tmp/your_own.pem'),
  cert: fs.readFileSync('/tmp/your_own.pem')
};

jQuery-File-Upload and Node.js

Using jQuery-File-Upload and my own Node.js server, these are some comments about it.

IE9 giving "Error - Empty file upload result" but upload successful

Might be that you have cross-domain posts, the IE9 will use the iframe solution that will require redirect.
see here for more info on it

Modules and paths

npmjs is what you need for installing modules and for figuring out what paths node.js looks in, you can set this in your shell:
export NODE_DEBUG=module

More programming related pages

Workflow: Release process
Workflow: Bug tracking
Teambox (Redbooth) - Mantis connector
Design Patterns
Git & Github
Go / Golang
CVS
CVS backup script
Distribution process
Installation script
Java Server Faces
Facelets
jibx
jBoss
jBpm
Perl tips
Perl links
PostgreSQL
Python / py2app
Shell scripts
Xslt
Node.js
Facebook / Opengraph
PHP developer notes
Redbooth API through php
Website optimization
jqTableKit demo
Javascript / html / css links