Skip to content

Instantly share code, notes, and snippets.

View bholben's full-sized avatar

Bob Holben bholben

  • HyperGenius
  • Atlanta
View GitHub Profile
@bholben
bholben / keybase.md
Created March 9, 2018 17:20
Keybase Proof

Keybase proof

I hereby claim:

  • I am bholben on github.
  • I am bholben (https://keybase.io/bholben) on keybase.
  • I have a public key ASAqRTxGLDSTHkLNObsoRfGlTO3MWLImuYRN1hZPackC2wo

To claim this, I am signing this object:

@bholben
bholben / test.js
Last active November 11, 2015 06:02
function Animal() {}
Animal.prototype.poop = function () {};
function Dog() {
Animal.call(this);
}
Dog.prototype = Object.create(Animal.prototype);