Skip to content

Instantly share code, notes, and snippets.

View adelcambre's full-sized avatar

Andy Delcambre adelcambre

View GitHub Profile
testing 00-metro
testing 00-metro
blah
class Bar
end
class Bar
end
Created by hub

Welcome to Drift!

Drift is an always-already versioned, cloud-backed text editor. You can use it to take notes, and save them in the GitHub cloud.

Your gists are always saved locally, and any changes you make will get pushed to GitHub's servers.

To name a gist, touch its name in the toolbar.

You can use the share button at the top-right to copy a link to one of your gists, or view it on the web in Safari.

@adelcambre
adelcambre / portland.md
Last active March 23, 2017 02:37
My Portland recomendations

Food to Not be missed in Portland

The "I go every time I'm there" category

  • Baan Thai - Small hole in the wall on the College campus, pretty much the best Thai Food I have found
  • Biwa - Awesome Japanese Izakaya place. I love this place so much and the owner Gabe is super nice. Get the Ramen unless it's about a million degrees. The Kara age is amazing too.
  • Bailey's Best beer spot in Portland. 20 rotating taps (almost) always from the west coast and mostly local to Portland. They never replace the a keg with the same beer so it's always a different lineup. Geoff and Michael know their shit so you can always ask for advice.
  • Bunk Sandwiches Some of the best sandwiches I've had. The pork belly bahn mi is to die for if they have it. They have a sister place called bunk bar that's open for dinner too, but I'm partial to the lunch only original.

rbx-head :001 > foo
NameError: undefined local variable or method `foo' on an instance of Object.
from Kernel(Object)#foo (method_missing) at kernel/delta/kernel.rb:85
from { } in Object#irb_binding at (irb):1
rbx-head :002 > foo = 123 if false
=> nil
rbx-head :003 > foo
=> nil
@adelcambre
adelcambre / README.txt
Created January 20, 2011 21:43
make messages containing *green* green and containing *red* red in Propane
curl https://gist.github.com/raw/788740/4b337df4be4be4338e2466ef775cd685b57d9601/gistfile1.diff | patch -p0
#!/usr/bin/env ruby
def binding_play(&blk)
eval("__LINE__", blk)
end
puts binding_play {
puts "FOO"
}