This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REST URL for requesting content: | |
http://server/service/home/[˜][{username}]/[{folder}]?[{query-params}] | |
fmt={ics, csv, etc} | |
id={item-id} | |
imap_id={item-imap-id} | |
part={mime-part} | |
query={search-query} | |
types={types} // when searching | |
auth={auth-types} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
me = "freaky" | |
print "before I was %s" % me | |
from re import compile as cum | |
twist = lambda x : str(x).encode("rot-13") | |
D = 8 | |
print "I was always thinking of s%sx" % chr(int( "".join(reduce( lambda x : x+y , cum("(.)(.)").findall("69") )))) | |
print "coding transformed me the following way" | |
print "I became %s" % (8==D and twist(cum( "(.)(.).(y)").sub( twist("x") + 'v' + twist(chr(69)) + chr(69), me))) |