Related Posts
Python: How to debug HTTP while using urllib2
… import urllib import urllib2 #this is just to prepare a dynamic uri (this is actual code from a system I’m building, sorry) fileDownloadServiceURL = ‘%s://%s:%s/%s’ % (transport,server,port,pathToController) postData = {‘URI’:fileUri} #add more post stuff here postData = urllib.urlencode(postData) #make sure you encode your post data #add some custom headers if you need them headers={“Host”: […]
OnLive could change the video game industry
I feel it’s my geek given duty to make a post about this presentation. I was lucky to finally have the time to watch their hour long presentation and Q&A session at the Game Developer Conference 2009 (which ends a couple of days from today). They could have not picked a better place to finally […]
Have the latest HAProxy as a Ubuntu Service
So you need to use HAProxy and you love the convenience of binary packages on repos, but when you install the version HAProxy available in the repos you realize that it is way too old for what you need. Then you download the latest HAProxy, compile it, configure it, but it’s a bit of a […]