Skip to content

Instantly share code, notes, and snippets.

View guilhermef's full-sized avatar

Guilherme Souza guilhermef

View GitHub Profile
@guilhermef
guilhermef / gist:297680f457f82fb27b3d
Last active May 8, 2020 15:15 — forked from okor/gist:79c38cfb03b153bd4eb2
Install Thumbor on Ubuntu 15.04
# sudo su and run the following
sudo aptitude update
# install all dependencies
sudo aptitude -y install \
python-pip \
python2.7-dev \
libssl-dev \
libcurl4-openssl-dev \
@guilhermef
guilhermef / robot.js
Created December 1, 2012 18:07 — forked from fellipetenorio/robot.js
MyRoboto
//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);
@guilhermef
guilhermef / robot.js
Created November 30, 2012 17:37 — forked from heynemann/robot.js
Chaser
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot){
robot.clone();
robot.turn(45);
this.offset = 1;
};
Robot.prototype.onIdle = function(ev) {
@guilhermef
guilhermef / pictures.markdown
Created November 25, 2012 13:22 — forked from sent-hil/pictures.markdown
River (getriver.com): Keep a programming journal.

One of my favorite past times is to look at the notebooks of famous scientists. Da Vinci's notebook is well known, but there plenty others. Worshipping Da Vinci like no other, I bought a Think/Create/Record journal, used it mostly to keep jot down random thoughts and take notes. This was great in the beginning, but the conformity of lines drove me nuts. Only moleskines made blank notebooks, so I had to buy one.

At the same time I started a freelance project. The project itself is irrelevant, but suffice to say it was very complex and spanned several months. It seemed like a perfect opportunity to use the moleskine. Looking back, all my entries fell under few categories:

  • Todo
  • Question
  • Thought
  • Bug
  • Feature