Gzip a StringIO stream
https://gist.github.com/dgmt/e3c6cff28a76b698943a0d59c3345a3c
Stranger Things
Game of Thrones Daily


祝日 / Permanent Vacation
hello vonnie
PUT YOUR BEARD IN MY MOUTH
h

Love Begins
occasionally subtle

Discoholic 🪩
$LAYYYTER

❣ Chile in a Photography ❣
Keni
Cosimo Galluzzi
Claire Keane
Sweet Seals For You, Always
tumblr dot com
"I'm Dorothy Gale from Kansas"
we're not kids anymore.

seen from Türkiye
seen from United Kingdom
seen from United States
seen from Canada
seen from Italy
seen from United States

seen from United States

seen from Mexico
seen from Spain
seen from Canada

seen from Malaysia

seen from Türkiye
seen from United Kingdom

seen from Poland

seen from Germany

seen from Türkiye

seen from United States

seen from Singapore

seen from United States
seen from United States
@shroudofturing-blog
Gzip a StringIO stream
https://gist.github.com/dgmt/e3c6cff28a76b698943a0d59c3345a3c

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Human readable filesize
https://gist.github.com/vriznic/5623cbd4f6c0a2e3e859
Import libraries from local folder
from onionshare:
https://gist.github.com/vriznic/b2300f804ab86a475c17
tastypie.http.HttpBadRequest
Here
API search
Haystack stuff:
Search string: 127.0.0.1:8000/console/api/v1/premises/search/?=zeto&format=json
install elasticsearch,pyelasticsearch

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Longest common substring
https://gist.github.com/dgmt/8022451
Icons are not my fav things...
This is an example text, i want its favicons!!!
>>> z='Thanks a lot. But you are right, when type attribute is missing, or different the expression will not work. What have to be changed, that the type attribute, or anything other between "shortcut icon" and href will be ingored? It should work with: <link rel="shortcut icon" type="image/x-icon" href="//icons/favicon.ico" /> <link rel="shortcut icon" href="//icons/favicon.ico" /> and also with: <link rel="shortcut icon" 12345678 href="//icons/favicon.ico" /> <link rel="shortcut icon" 12345678 href="http://site.yeah.com/favicon.ico" /> Thank you'
>>> a = re.findall(r'(?<=\<link rel=[",\']shortcut icon[",\'])[ ,\w]* href=[",\'][\w,\/,:,.]*.ico[",\']',z)
>>> neu=[] >>> for item in a: neu.extend(re.findall(r'(?<=href=[",\'])[\w,\/,:,.]*.ico(?=[",\'])',item)) >>> neu ['//icons/favicon.ico', '//icons/favicon.ico', 'http://site.yeah.com/favicon.ico'] >>> WIN!
mapmap
>>> a=['asd_bsd','xc_ax','xx'] >>> b=['__'] >>> c=['_s_'] >>> L = map(lambda x:x.replace('_','*'), a) >>> L ['asd*bsd', 'xc*ax', 'xx'] >>> N = map(lambda x:map(lambda x:x.replace('_','*'), x),[a,b,c]) >>> N [['asd*bsd', 'xc*ax', 'xx'], ['**'], ['*s*']]
Know me, Mongo
>>> auth='mongodb://username:[email protected]:27017' >>> con = Connection(auth)
Poison Pill Termination Pattern

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Go through the keychain
>>> a={'a':1,'b':2} >>> a {'a': 1, 'b': 2} >>> a['c']={'x':4,'y':5} >>> a {'a': 1, 'c': {'y': 5, 'x': 4}, 'b': 2} >>> len(a['c']) 2 >>> keys=['c','y'] >>> for i in keys: a=a[i] print a {'y': 5, 'x': 4} 5 >>> a 5
Flatten the dictionary
tstRec2={ 'namesurname':{'name':'Vladimir','surname':'Mayakovski'}, 'drinksmoke':{'drink':'no','smoke':'yes'} } def dictator(record, parentKey=''): items=[] for key in record: nKey = parentKey + '_' + key if parentKey else key if (isinstance(record[key], collections.MutableMapping)): items.extend(dictator(record[key], nKey).items()) else: items.append((nKey,record[key])) return dict(items)
Hexed
>>> c=r'\xbd\xf9vq\xe2\x17\xf4' >>> a=c.replace('\\','*0') >>> splitted=a.split('*') >>> for i in splitted: try: print int(i,16) except: pass 189 226 23 244 >>>
Apache&WSGI
processes die on timeout??? research!!! F_YEAH SUPERVISORD!!!
File reader generator
def loadZips(): #returns a list with all the ZIPs with open("zips.txt") as f: for line in f: yield (line.rstrip()) zips=loadZips()
Then use zips as any other iterable

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
It runs in background, find it, kill it
nohup python script.py & ps aux | grep script kill -9 pid
Break from second loop, continue first
>>> a=['a','b','c','d','e'] >>> b=[1,2,3,4,5,6,7,8,9] >>> for l in a: for n in b: if (n==4): broke=True break else: print l print n if(broke==True): broke=False continue