Skip to content

Instantly share code, notes, and snippets.

View horshacktest's full-sized avatar

Jeff Borisch horshacktest

View GitHub Profile
@horshacktest
horshacktest / keybase.md
Last active May 7, 2018 14:36
keybase.md

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@horshacktest
horshacktest / what.md
Last active August 15, 2016 03:45
notes on a ruby code example

I'm learning the basics of ruby and found a site with some interesting articles. I'm reading one about using mixins and how they can be used to easily add a bunch of useful functions to your class.

Here is some example code that confused me.

class Queue 
  include Enumerable

  def initialize(file)
    @file = file
## do something