A list of slides from nodeconf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<style type="text/css"> | |
.highlight table td { padding: 5px; } | |
.highlight table pre { margin: 0; } | |
.highlight { | |
color: #faf6e4; | |
background-color: #122b3b; | |
} | |
.highlight .gl { | |
color: #dee5e7; |
This is an experiment to find recent nodejs packages using node-waf in order to have a good chance of 'fixing' those (i.e. switch to node-gyp)
- Bytes and Blobs by David Flanagan video
- Conference Wifi Redux by Malte Ubi video
- Sashimi - https://github.com/cramforce/Sashimi
- Run Your JS everywhere with Jellyfish by Adam Christian - http://jelly.io Project video
- Fighting Crime and Kicking Apps with Batman.js by Nick Small
- Hello Jo by **[Dave Balmer](http://twit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coffee = require 'coffee-script' | |
https = require 'https' | |
npm = require 'npm' | |
Irc = require 'irc-js' | |
cradle = require 'cradle' | |
{GitHubApi} = require 'github' | |
request = require 'request' | |
gitHubApi = new GitHubApi() | |
githubIssueApi = gitHubApi.getIssueApi() | |
githubObjectApi = gitHubApi.getObjectApi() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var follow = require("follow") | |
var seen = {} | |
follow({ db: "http://isaacs.ic.ht/registry" | |
, since: 20267 | |
, include_docs: true }, function (er, update) { | |
if (er) throw er | |
var doc = update.doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
startup.customRuntimeMain = function () { | |
var path = NativeModule.require('path'); | |
var custom = path.resolve(process.cwd(), process.argv[0] + ".js"); | |
if (!path.existsSync(custom)) return; | |
process.argv[1] = custom; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl http://npmjs.org/install.sh | sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Register | |
** '^/register/new/(?P<username>.*)$', 'POST' | |
*** input | |
username, email, password | |
*** output | |
{ | |
} |