Skip to content

Instantly share code, notes, and snippets.

View xala3pa's full-sized avatar
🏠
Working from home

Álvaro Salazar xala3pa

🏠
Working from home
View GitHub Profile
@xala3pa
xala3pa / robot.js
Created December 7, 2012 18:29
3pa win!
function Robot(robot) {}
// well, we need to do something...
// whenever our robot is idle, this method gets called.
Robot.prototype.onIdle = function(ev) {
var robot;
robot = ev.robot;
robot.ahead(150);
robot.rotateCannon(360);
robot.turn(20)
@xala3pa
xala3pa / robot.js
Created December 7, 2012 18:21
3pa
//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);
@xala3pa
xala3pa / editor.css
Created May 31, 2012 13:53 — forked from nakhli/editor.css
Backbone.js tutorial - Part 1 - www.javageneration.com
.shape{
height: 100%;
width: 100%;
}
.circle {
border-radius: 50%/50%;
-moz-border-radius: 50%/50%;
-webkit-border-radius: 50%/50%;
}
.hide {