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
npm info it worked if it ends with ok | |
npm verb cli [ '/usr/bin/node', '/usr/bin/npm', '-ddd', 'install', 'julius' ] | |
npm info using [email protected] | |
npm info using [email protected] | |
npm verb node symlink /usr/bin/node | |
npm verb read json /home/skeggse/repos/package.json | |
npm WARN package.json [email protected] No README.md file found! | |
npm verb read json /home/skeggse/repos/node_modules/colors/package.json | |
npm verb read json /home/skeggse/repos/node_modules/express/package.json | |
npm verb read json /home/skeggse/repos/node_modules/imap/package.json |
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
socket.on('ping', function(fn) { | |
_.isFunction(fn) && fn(Date.now()); | |
}); |
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/lib/stickshift/{REDACTED}/app-root/data/bin/node: line 3: 12992 Segmentation fault NODE_PATH=$OPENSHIFT_DATA_DIR/lib/node_modules PORT=$OPENSHIFT_INTERNAL_PORT C9_PORT=$OPENSHIFT_INTERNAL_PORT IP=$OPENSHIFT_INTERNAL_IP HOME=$OPENSHIFT_DATA_DIR $OPENSHIFT_DATA_DIR/bin/node-openshift "$@" |
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
<?php | |
header("content-type: application/json"); | |
$output = array("classes" => array(0, 1, 2, 3, 4), "rooms" => array(0, 1, 2, 3, 4)); | |
echo json_encode($output); // {"classes":[0,1,2,3,4],"rooms":[0,1,2,3,4]} |
NewerOlder