[Describe ambitions: type of work, attributes of team, what you want to learn & teach]
[in reverse chronological order, list at most 5 positions or 10 years back, whichever is fewer]
[Describe ambitions: type of work, attributes of team, what you want to learn & teach]
[in reverse chronological order, list at most 5 positions or 10 years back, whichever is fewer]
| /** | |
| * Make a X-Domain request to url and callback. | |
| * | |
| * @param url {String} | |
| * @param method {String} HTTP verb ('GET', 'POST', 'DELETE', etc.) | |
| * @param data {String} request body | |
| * @param callback {Function} to callback on completion | |
| * @param errback {Function} to callback on error | |
| */ | |
| function xdr(url, method, data, callback, errback) { |
| var Parser = require('./jsonparse'); | |
| var Http = require('http'); | |
| var p = new Parser(); | |
| // IMPORTANT, put your username and password in here | |
| var username = "yourTwitterUsername", password = "yourPassword"; | |
| var client = Http.createClient(80, "stream.twitter.com"); | |
| var request = client.request("GET", "/1/statuses/sample.json", { | |
| "Host": "stream.twitter.com", | |
| "Authorization": (new Buffer(username + ":" + password)).toString("base64") | |
| }); |
| #!/bin/bash | |
| # nodejs - Startup script for node.js server | |
| # chkconfig: 35 85 15 | |
| # description: node is an event-based web server. | |
| # processname: node | |
| # server: /path/to/your/node/file.js | |
| # pidfile: /var/run/nodejs.pid | |
| # |