Skip to content

Instantly share code, notes, and snippets.

View RobAWilkinson's full-sized avatar

Rob Wilkinson RobAWilkinson

  • @oddballio
  • Austin, TX
View GitHub Profile

The mobbing manual provides guidelines for working in a group oriented context

Values

  • Kindness
  • Consideration
  • Respect

Roles

  • Driver Learning Goal: practice keyboarding, listening, and translation skills.
@RobAWilkinson
RobAWilkinson / Dockerfile
Created October 15, 2015 17:19 — forked from formula1/.gitignore
Boiler Plate
FROM ubuntu:15.04
RUN apt-get update
RUN apt-get install -y node python2.7 gcc make gyp build-essential
RUN mkdir -p /usr/src/app
ENV NODE_ENV=DEVELOPMENT
WORKDIR /usr/src/app
ONBUILD RUN npm install
ONBUILD COPY . /usr/src/app
module.exports = function(){
var date = Date.now();
while(Date.now() - date < 5000);
return 'ok';
}