Skip to content

Instantly share code, notes, and snippets.

View omichel's full-sized avatar
🪲
Working on Webots

Olivier Michel omichel

🪲
Working on Webots
View GitHub Profile
@omichel
omichel / keybase.md
Created January 3, 2019 19:54
Keybase identity

Keybase proof

I hereby claim:

  • I am omichel on github.
  • I am omichel (https://keybase.io/omichel) on keybase.
  • I have a public key ASCPHAr3MQGXrX-KORtpHRRyjr-Fk0W545RDYQC26tvXSwo

To claim this, I am signing this object:

@omichel
omichel / robot.js
Created December 10, 2012 13:26 — forked from dudadornelles/robot.js
Shrimp Hunter
var RobotState = function () {
data = {};
data.isLookingAtTarget = false;
return data;
};
var goodRobot = RobotState();
var evilRobot = RobotState();
@omichel
omichel / robot.js
Created December 10, 2012 13:24
Bob
//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);