Skip to content

Instantly share code, notes, and snippets.

View ErikPeterson's full-sized avatar

Ricky Tomatoes ErikPeterson

View GitHub Profile
@ErikPeterson
ErikPeterson / ballObj.js
Created January 24, 2015 21:13
ballObj.js
var Ball = function(scale, startx, starty, startz, maxy, miny, direction, material, scene){
this.geometry = new Three.SphereGeometry(100, 32, 32);
this.mesh = new THREE.mesh(this.gemoetry, material)
this.mesh.position.x = startx;
this.mesh.position.y = starty;
this.mesh.position.z = startz;
this.mesh.scale.x = this.mesh.scale.y = this.mesh.scale.z = scale;
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', github: 'rails/rails', branch: '4-2-stable'
# Use Postgres as the database for Active Record
gem 'pg'
# Use Fog to manage uploads to S3
gem 'fog'
GIT
remote: git://github.com/rails/rails.git
revision: d45c3ab658bb02544eb02abe49600be9763eeeda
branch: 4-2-stable
specs:
actionmailer (4.2.1)
actionpack (= 4.2.1)
actionview (= 4.2.1)
activejob (= 4.2.1)
mail (~> 2.5, >= 2.5.4)
var Calculator = function(){};
Calculator.prototype.input = function(operand1, operator, operand2){
if(operator === '+'){
return this.add(operand1, operand2);
}
}
Calculator.prototype.add = function(operand1, operand2){
return operand1 + operand2;
PATH
remote: .
specs:
stripe-ruby-mock (2.2.0)
dante (>= 0.2.0)
jimson-temp
stripe (>= 1.27.0)
GEM
remote: https://rubygems.org/
@ErikPeterson
ErikPeterson / resume.md
Last active October 30, 2015 19:47
Resume

#Resume

##Bio Born and raised in Weston, MA. Attended Rhode Island School of Design (BFA 2011). Graduated Flatiron School in 2014.

##Employment

Bon Appétit Magazine - Developer (2011-2014) Created original, interactive front-end features for bonappetit.com. Architected and lead transition from Teamsite CMS to Wordpress. Consulted on web strategy, SEO, and technology decisions.