What’s better than Burn Gorman? Three Burn Gormans.





#interview with the vampire#iwtv#the vampire armand#assad zaman
seen from Russia
seen from China
seen from Canada

seen from United States
seen from China
seen from China
seen from Brazil
seen from United States
seen from United States

seen from Russia
seen from South Korea

seen from China
seen from France

seen from Russia
seen from China
seen from China
seen from United States
seen from China
seen from Taiwan

seen from Australia
What’s better than Burn Gorman? Three Burn Gormans.
Comfort series 💚
Bought some pizza to eat with my tears
My boy is a lieutenant coronel now with impeccable hair and leather gloves
Love is no more than a dog barking at a crow. 💔
Another post from the "Useless Script" department
A while back I wrote some nodejs that mish-moshed email and web 2.0 long-poll action into a very ugly, but fairly up-to-date showing of debian changes. That is over on my server here.
The code's fairly simple, so I also wrote a python consumer here.
Since it's so simple, I've pasted it below, too.
Feel free to use (but please not abuse) my server :)
#!/usr/bin/env python import time import urllib import json service = "http://pault.ag:8080/tail" lastts = 0 def loop(): global lastts while True: f = urllib.urlopen("%s?since=%s" % (service, str(lastts))) msgs = json.loads(f.read()) for x in msgs['messages']: print x['text'] if lastts < x['timestamp']: lastts = x['timestamp'] loop()