I hereby claim:
- I am cgardner on github.
- I am cgardner (https://keybase.io/cgardner) on keybase.
- I have a public key ASAycpx--cg4frqXoB8Fic57v0N2YlYBrO6Gx1fj_H6orQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var go=120; | |
| var Robot = function(robot) { | |
| }; | |
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| robot.clone(); | |
| robot.rotateCannon(360); | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); |
| var Robot = function(robot){ | |
| robot.turnLeft(robot.angle % 90); | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| if (robot.parentId) { | |
| robot.ahead(1); | |
| robot.turnGunRight(1); | |
| } | |
| else { |
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); |
| $ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install cdrtools | |
| ==> Downloading ftp://ftp.berlios.de/pub/cdrecord/cdrtools-3.00.tar.gz | |
| Already downloaded: /Library/Caches/Homebrew/cdrtools-3.00.tar.gz | |
| /usr/bin/tar xf /Library/Caches/Homebrew/cdrtools-3.00.tar.gz | |
| ==> smake INS_BASE=/usr/local/Cellar/cdrtools/3.00 INS_RBASE=/usr/local/Cellar/cdrtools/3.00 install | |
| smake INS_BASE=/usr/local/Cellar/cdrtools/3.00 INS_RBASE=/usr/local/Cellar/cdrtools/3.00 install | |
| ==> Exit Status: 1 | |
| https://github.com/mxcl/master/blob/master/Library/Formula/cdrtools.rb#L11 | |
| ==> Build Environment | |
| HOMEBREW_VERSION: 0.9.3 |
| <?php | |
| $var = <<<VAR | |
| 1 | |
| VAR; | |
| // do stuff here | |
| echo $var; | |
| register_shutdown_function(function() { |
| CmdUtils.CreateCommand( | |
| { | |
| name: "drupal-module", | |
| takes: {"function": noun_arb_text}, | |
| icon: "http://drupal.org/misc/favicon.ico", | |
| homepage: "http://craig-gardner.com", | |
| author: {name: "Craig Gardner", email: "craig.s.gardner@gmail.com"}, | |
| license: "MPL,GPL", | |
| description: "Quickly access Drpual modules", | |
| help: "Enter the name of a Drupal module", |