Skip to content

Instantly share code, notes, and snippets.

View jpbochi's full-sized avatar
🦔

JP Bochi jpbochi

🦔
View GitHub Profile
@jpbochi
jpbochi / simple-git-branching-model.md
Created February 10, 2021 09:59 — forked from jbenet/simple-git-branching-model.md
a simple git branching model

a simple git branching model (written in 2013)

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.

@jpbochi
jpbochi / robot.js
Created December 10, 2012 01:23 — forked from apretto/robot.js
Fluffy Unicorn Mk.I
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
var helperFuncs = {
center: function (robot, helper) {
return {x: robot.arenaWidth/2,
@jpbochi
jpbochi / robot.js
Created December 6, 2012 00:00 — forked from Shipow/robot.js
Shipow#001 (fork)
var Robot = function(robot) {
robot.rotateCannon(-90);
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead();
//i'll add a clone but i need to refactor collision
//robot.clone();
};