Skip to content

Instantly share code, notes, and snippets.

@kaungst
kaungst / gist:aed73ce320eba7836007917a12052538
Last active November 23, 2017 03:14
Blockstack Verification
Bitcoin donut fund: 1FfJS94TsYyyXRkSbRE2Nuhzowg56SSmZ8
Verifying my Blockstack ID is secured with the address 1DwmpdBXgS6JPEUvNCzmZP1PHV7wWA4Tdv https://explorer.blockstack.org/address/1DwmpdBXgS6JPEUvNCzmZP1PHV7wWA4Tdv
@kaungst
kaungst / cool_irb_feature.rb
Last active November 10, 2017 21:44
Cool irb feature in ruby 2.4+
require 'irb'
class TroublesomeClass
def method_making_a_fuss(bad_argument)
return if bad_argument == false
binding.irb # you enter a repl where you can `puts bad_argument`
end
end