2786 Elginfield Rd
Columbus, OH 43220
614.457.6193
var net = require('net'); | |
var httpProxy = require('http-proxy'); | |
var sites = [{ | |
domain: "bwhs.me", | |
path: __dirname + "/sites/Watterson-Dresses/server.js", | |
port: 3001 | |
}]; | |
var options = { |
var http = require('http'); | |
var exec = require('child_process').exec; | |
var repo = "https://github.com/mattneary/Watterson-Dresses.git"; | |
http.createServer(function(req, res) { | |
exec("rm -rf /home/ec2-user/sites/Watterson-Dresses", function(err, stdout, stderr) { | |
if( err ) { | |
res.writeHead(400); | |
res.end("error: "+JSON.stringify(err)) | |
return; |
var http = require('http'), | |
fs = require('fs'); | |
var req = http.request({ | |
mathod: 'GET', | |
host: 'brightcove03-f.akamaihd.net', | |
path: '/2012rebroadcastHD_dci_live@55848?videoId=2407134469001&lineUpId=&pubId=27638699&playerId=1684416337001&affiliateId=&v=2.11.3&fp=MAC%2011,7,700,203&r=SLZWK&g=RYSHXMKECKNV&seek=251.097', | |
port: '80' | |
}, function(resp) { | |
resp.pipe(fs.createWriteStream(__dirname + '/movie.flv')); |
#pragma config(Motor, motorA, leftMotor, tmotorNXT, PIDControl, encoder) | |
#pragma config(Motor, motorB, rightMotor, tmotorNXT, PIDControl, encoder) | |
#pragma config(Sensor, S4, colorSensor, sensorCOLORFULL) | |
#include "Simple Car Header.c" | |
/* | |
___________________________________ | |
| | | |
| /========================\ | | |
| | AUTOMATED PERIOD DIAGRAM | | |
# Elementary List Functions | |
cons = (a, b) -> (option) -> switch option | |
when true then a | |
else b | |
nil = null | |
atom = (x) -> typeof(x) != 'function' | |
car = (x) -> x(true) | |
cdr = (x) -> x(false) | |
# Functions on Recursive Pairs |
#pragma config(Motor, motorA, leftMotor, tmotorNXT, PIDControl, encoder) // | |
#pragma config(Motor, motorB, rightMotor, tmotorNXT, PIDControl, encoder) // | |
#pragma config(Sensor, S1, touchSensor, sensorTouch) // | |
// | |
#include "./Headers/JoystickDriver.c" // | |
// Do Not Add Or | |
float speed = 1.0; // Modify Code Above | |
#include "./Headers/Control Header.c" // | |
// | |
#define THRESHOLD 0 // |
2786 Elginfield Rd
Columbus, OH 43220
614.457.6193
<script> | |
var inputs = {}; | |
function save(value, name) { | |
inputs[name] = parseInt(value); | |
} | |
function checker(criterion, action) { | |
return function(value, name) { | |
if( !criterion(value) ) { | |
alert("Not Numeric"); | |
} else { |
// lemonad source... | |
L.fix1 = L.curry(L.curry)(1); | |
L.fix2 = L.curry(L.curry)(2); | |
L.fix3 = L.curry(L.curry)(3); | |
L.fix4 = L.curry(L.curry)(4); | |
// function we could provide: | |
L.fix = L.curry(L.curry); |
<? | |
/* | |
PHP takes the design of Perl (ugly), the interfaces | |
of C (low-level and clunky), and the OO of C++ | |
(an impure mess). Some things are completely broken, | |
and every API is either inconsistent or just | |
inconvenient. | |
Its only utility is its output of inline text, which |