Skip to content

Instantly share code, notes, and snippets.

View marcosccm's full-sized avatar

Marcos Castilho da Costa Matos marcosccm

View GitHub Profile

Immortal Ruby

  • Desired talk duration: 30 minutes

Abstract

Should rubyists care about immutability? Yes! On this talk we discuss why immutability is an important concept and the many ways you can apply it to your Ruby Projects, from using specific gems to having immutability as a design tool. Let's not let the functional languages steal all the fun!

@marcosccm
marcosccm / robot.js
Created December 8, 2012 12:37 — 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)
@marcosccm
marcosccm / robot.js
Created December 8, 2012 12:36
Zolmeister
var robots = new Array();
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.start = function( ev ){