Skip to content

Instantly share code, notes, and snippets.

Verifying my Blockstack ID is secured with the address 1PbxfjvvJaUMoCRju14hfoxZJ2AbjQnZjR https://explorer.blockstack.org/address/1PbxfjvvJaUMoCRju14hfoxZJ2AbjQnZjR

Keybase proof

I hereby claim:

  • I am zblach on github.
  • I am zblach (https://keybase.io/zblach) on keybase.
  • I have a public key ASCpsvcRzjPN60JA7iUUG-7YB5LCh8oE8Mq-keZpDVS2two

To claim this, I am signing this object:

Please publicly post the following Gist, and name it keybase.md

Keybase proof

I hereby claim:

  • I am zblach on github.
  • I am zblach (https://keybase.io/zblach) on keybase.
  • I have a public key ASC9B6cC-QE9n41RK1l_TDuJohRnrG6Ua-5vW60vbeE7pAo

Keybase proof

I hereby claim:

  • I am zblach on github.
  • I am zblach (https://keybase.io/zblach) on keybase.
  • I have a public key whose fingerprint is E6AB 67AF 076E 778E 987E 3235 8236 E187 AFA2 F824

To claim this, I am signing this object:

" less-style ampersand filter
call unite#custom#profile('source/line', 'context', {
\ 'buffer_name' : 'filter',
\ 'prompt_direction' : 'below',
\ 'split' : 1,
\ 'tab' : 0,
\ 'prompt' : '&/',
\ 'toggle' : 1,
\ })
call unite#custom#source('source/line', 'matchers', 'matcher_regexp')
@zblach
zblach / manhattan
Created August 30, 2014 16:12
fun with manhattan memoizers
# generic 'catch-all' memoization decorator
def memoize(function):
# some data types don't take kindly to being map keys. serialize 'em
def serialize(x):
if type(x) == list:
return tuple(x)
elif type(x) == dict:
return tuple(x.items())
else:
return x