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
traceroute to appengine.google.com (173.194.41.167), 30 hops max, 60 byte packets | |
1 api.home (192.168.1.254) 1.092 ms 1.057 ms 8.324 ms | |
2 213.120.155.227 (213.120.155.227) 9.522 ms 10.516 ms 10.692 ms | |
3 213.120.155.158 (213.120.155.158) 10.970 ms 11.741 ms 11.721 ms | |
4 213.120.161.18 (213.120.161.18) 12.688 ms 13.807 ms 13.785 ms | |
5 217.32.26.74 (217.32.26.74) 13.897 ms 14.196 ms 14.353 ms | |
6 217.32.26.182 (217.32.26.182) 15.185 ms 8.325 ms 8.522 ms | |
7 acc2-10GigE-0-1-0-5.bm.21cn-ipp.bt.net (109.159.248.218) 10.224 ms acc2-10GigE-0-7-0-4.bm.21cn-ipp.bt.net (109.159.248.198) 10.214 ms acc2-10GigE-0-7-0-6.bm.21cn-ipp.bt.net (109.159.248.214) 10.212 ms | |
8 core2-te0-15-0-0.ealing.ukcore.bt.net (109.159.248.142) 20.288 ms 20.381 ms core2-te0-4-0-4.ealing.ukcore.bt.net (109.159.248.134) 21.508 ms | |
9 peer1-xe10-0-0.telehouse.ukcore.bt.net (109.159.254.122) 16.578 ms 16.978 ms 17.243 ms |
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
#!/bin/sh | |
# Make sure only root can run our script | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
# Update System | |
echo '[1] Updating System' | |
apt-get -y update > /dev/null 2>&1 |
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
/** | |
* Oauth 2.0 basic example | |
*/ | |
var express = require('express'); | |
var oauth = require('oauth-server'); | |
/** | |
* Create a new server | |
*/ | |
var server = module.exports = express.createServer(); |
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
/** | |
* | |
*/ | |
/** | |
* Require Dependancies | |
*/ | |
var Mongoose = require('mongoose'), | |
_StoreProto = require('express').session._ConnectSession.Store.prototype; |
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
/** | |
* SOCKS5 Proxy as per RFC1928 | |
* @see : http://www.ietf.org/rfc/rfc1928.txt | |
*/ | |
/** | |
* Load Dependancies | |
*/ | |
var net = require('net'), |
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
#!/bin/sh | |
# Make sure only root can run our script | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
# Update System | |
echo '[1] Updating System' | |
apt-get -y update > /dev/null 2>&1 |
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
(function(){ | |
/** | |
* Create the perms stack | |
*/ | |
var stack = []; | |
/** | |
* Declare permute functuin | |
*/ |
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
<?php | |
/** | |
* LightPHP Framework | |
* LitePHP is a framework that has been designed to be lite waight, extensible and fast. | |
* | |
* @author Robert Pitt <[email protected]> | |
* @category core | |
* @copyright 2013 Robert Pitt | |
* @license GPL v3 - GNU Public License v3 | |
* @version 1.0.0 |
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
<?php | |
/** | |
* LightPHP Framework | |
* LitePHP is a framework that has been designed to be lite waight, extensible and fast. | |
* | |
* @author Robert Pitt <[email protected]> | |
* @category core | |
* @copyright 2013 Robert Pitt | |
* @license GPL v3 - GNU Public License v3 | |
* @version 1.0.0 |
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 jsondiff = (function() { | |
// Patch helper functions | |
function getParent(paths, path) { | |
return paths[path.substr(0, path.match(/\//g).length)]; | |
} | |
// Checks if `obj` is an array or object | |
function isContainer(obj) { | |
return _.isArray(obj) || _.isObject(obj); |
OlderNewer