Skip to content

Instantly share code, notes, and snippets.

@brigham
brigham / keybase.md
Created April 12, 2014 00:17
keybase proof

Keybase proof

I hereby claim:

  • I am brigham on github.
  • I am brigham (https://keybase.io/brigham) on keybase.
  • I have a public key whose fingerprint is 86B2 5105 5D51 C433 2AFF FECA B02C 394D E5A1 4DC2

To claim this, I am signing this object:

@brigham
brigham / index.coffeescript
Created July 18, 2012 23:47
A web page created at CodePen.io
moveCar = (car, floor) ->
deferred = $.Deferred()
$("#elevator#{car} .car")
.animate({bottom: "#{floor * 23}px"},
duration: 'slow'
complete: ->
deferred.resolve()
)
deferred