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 22:14 — forked from kjaku/robot.js
Bubu
var Robot = function(robot) {
// var robot = ev.robot;
}
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.clone();
robot.rotateCannon(360);
robot.turn(360)
@xala3pa
xala3pa / robot.js
Created December 7, 2012 18:52 — forked from kjaku/robot.js
try me punk - fork
var Robot = function(robot) {
// var robot = ev.robot;
}
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.clone();
robot.rotateCannon(360);
robot.turn(360)
@xala3pa
xala3pa / robot.js
Created December 7, 2012 18:50 — forked from kjaku/robot.js
try me punk
var Robot = function(robot) {
// var robot = ev.robot;
}
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.clone();
robot.rotateCannon(360);
robot.turn(360)
@xala3pa
xala3pa / robot.js
Created December 7, 2012 18:46 — forked from mauriciofaustino/robot.js
mRC
var Robot = function(robot) {
this.direction = 1;
this.found = false;
this.loseNum = 0;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
if(this.found) {
robot.turnGunRight(15 * this.direction);
@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 {