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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |
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 http = require('http'); | |
| var connect = require('connect'); | |
| var socketio = require('socket.io'); | |
| var fs = require('fs'); | |
| var os = require('os'); | |
| var exec = require('child_process').exec; | |
| var util = require('util'); | |
| var $ = require('underscore'); | |
| var load_data_in_mem_count = 3000; |
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/sh | |
| # Generic script for running ruby scripts as daemons using | |
| # jsvc and a java class to control the daemon. | |
| # | |
| # Contains common parameters and start/stop | |
| # Things you'll need to set on a per script/daemon basis: | |
| # SCRIPT_NAME | |
| # | |
| # Things you can set: |
NewerOlder