This file contains hidden or 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
### | |
Module dependencies | |
### | |
require.paths.unshift "#{__dirname}/lib/support/express-csrf/" | |
require.paths.unshift "#{__dirname}/lib/support/node_hash/lib/" | |
express = require 'express' | |
app = module.exports = express.createServer() | |
RedisStore = require 'connect-redis' |
This file contains hidden or 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 server = require('http'), | |
fugue = require('fugue'); | |
fugue.start( | |
server.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('Hello World\n'); | |
}) | |
, 3000, null, 10, { |
This file contains hidden or 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 server = require('http'), | |
fugue = require('fugue'); | |
fugue.start( | |
server.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('Hello World\n'); | |
}) | |
, 3000, null, 10, { |
This file contains hidden or 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
shripad-ks-macpro31:node-msgpack shripadk$ sudo make | |
cd deps/msgpack && \ | |
mkdir -p dist && \ | |
./configure --enable-static --disable-shared \ | |
--prefix=/deps/msgpack/dist && \ | |
make && \ | |
make install | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... ac/install-sh -c -d |
This file contains hidden or 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
#!/bin/bash | |
SERVER=https://api.no.de | |
SCRIPT="$0" | |
if [ ${SCRIPT:0:1} == "/" ]; then | |
SCRIPT="$(basename -- "$SCRIPT")" | |
fi | |
main () { | |
cmd=${1-help} |
This file contains hidden or 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
Checking for program g++ or c++ : /usr/bin/g++ | |
Checking for program cpp : /usr/bin/cpp | |
Checking for program ar : /usr/bin/ar | |
Checking for program ranlib : /usr/bin/ranlib | |
Checking for g++ : ok | |
Checking for program gcc or cc : /usr/bin/gcc | |
Checking for program ar : /usr/bin/ar | |
Checking for program ranlib : /usr/bin/ranlib | |
Checking for gcc : ok | |
Checking for library dl : yes |
This file contains hidden or 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
Undefined symbols: | |
"_EVP_CIPHER_CTX_block_size", referenced from: | |
node::Decipher::DecipherUpdate(v8::Arguments const&) in node_crypto_4.o | |
node::Decipher::DecipherFinal(v8::Arguments const&) in node_crypto_4.o | |
node::Decipher::DecipherFinalTolerate(v8::Arguments const&) in node_crypto_4.o | |
node::Cipher::CipherUpdate(v8::Arguments const&) in node_crypto_4.o | |
node::Cipher::CipherUpdate(v8::Arguments const&) in node_crypto_4.o | |
node::Cipher::CipherFinal(v8::Arguments const&) in node_crypto_4.o | |
"_BIO_set_flags", referenced from: | |
node::base64(unsigned char*, int, char**, int*)in node_crypto_4.o |
This file contains hidden or 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
From 7cb51a4207a279f3f91dea854b6d70454a5fdb99 Mon Sep 17 00:00:00 2001 | |
From: Joe ST <[email protected]> | |
Date: Thu, 26 Aug 2010 21:09:32 +0100 | |
Subject: [PATCH] Adds HTTP basic auth | |
Signed-off-by: Joe ST <[email protected]> | |
--- | |
lib/base64.js | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
lib/cradle.js | 15 +++++++- | |
2 files changed, 124 insertions(+), 2 deletions(-) |
This file contains hidden or 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
From 7cb51a4207a279f3f91dea854b6d70454a5fdb99 Mon Sep 17 00:00:00 2001 | |
From: Joe ST <[email protected]> | |
Date: Thu, 26 Aug 2010 21:09:32 +0100 | |
Subject: [PATCH] Adds HTTP basic auth | |
Signed-off-by: Joe ST <[email protected]> | |
--- | |
lib/base64.js | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
lib/cradle.js | 15 +++++++- | |
2 files changed, 124 insertions(+), 2 deletions(-) |
This file contains hidden or 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
goog.require('goog.Uri'); | |
goog.require('goog.events'); | |
goog.require('goog.json'); | |
goog.require('goog.net.xpc.CrossPageChannel'); | |
goog.global.initOuter = function(url) { | |
goog.events.listen(window, 'load', function() { xpcdemo.initOuter(url); }); | |
}; | |
goog.global.initInner = function() { | |
goog.events.listen(window, 'load', function() { xpcdemo.initInner(); }); |