pope (owner)

Revisions

gist: 142867 Download_button fork
public
Public Clone URL: git://gist.github.com/142867.git
Embed All Files: show embed
126207244316550804821666916.py #
1
2
3
4
5
def reverse_bit_iterator(val):
    while val > 0:
        yield val & 0xff
        val = val >> 0x8
print reduce(lambda x,y: y+x, map(chr, reverse_bit_iterator(long(__file__[:-3]))), "!")