Skip to content

Instantly share code, notes, and snippets.

View barbosa's full-sized avatar
:octocat:

Gustavo Barbosa barbosa

:octocat:
View GitHub Profile
Pod::Spec.new do |s|
s.name = 'JSONKit'
s.version = '1.6'
s.summary = 'A Very High Performance Objective-C JSON Library.'
s.homepage = 'https://github.com/johnezang/JSONKit'
s.author = 'John Engelhart'
s.source = { :git => 'https://github.com/creativemess/JSONKit.git' }
s.source_files = 'JSONKit.*'
end
@barbosa
barbosa / robot.js
Created December 3, 2012 17:05
W00t #1 YEAH!!!! (Zolmesiter)
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
//robot.turnGunRight(90);
robot.clone();
this.direction = 1;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(1);
if (robot.parentId) {
@barbosa
barbosa / bootstrap.sh
Created January 14, 2012 19:44 — forked from anonymous/bootstrap.sh
Django on Heroku with Celery and Sentry
virtualenv --no-site-packages .
source bin/activate
bin/pip install Django psycopg2 django-sentry
bin/pip freeze > requirements.txt
bin/django-admin.py startproject mysite
cat >.gitignore <<EOF
bin/
include/
lib/
EOF