How to handle Proxy PAC configuration with Qt

This article was originally written on another blog. That blog was never officially published, and it will probably never be. It was written on the 3rd of June 2010, but is still “somewhat important” and relevant. Since the post was published, Richard Moore <rich @linux
fpb.site> has done a commit in the Qt examples directory that resamples very closely my code below. So, I decided to repost it here. Qt and Proxy Configuration What’s great of Qt, is that it comes with a very rich set of libraries to cover almost everything you can think of. As a Qt developer, you should always double check the Documentation first, to see if “it’s already there”, before jumping into coding. It saves tons of time. ...

March 20, 2011 Â· 6 min Â· 1068 words

Charles: not the Prince, the Proxy

It’s around 3 months now that I’m spending majority of my time developing for the web. For both Career (my new job at Betfair) and Personal (my pet project txty.mobi) reasons. And when you do it pretty intensively, with a lot of JSON, Javascript code and what not, you need some tools to “ease tasks”. Particularly, the ones where you need to simulate a non-browser client or stuff like that. ...

September 10, 2010 Â· 3 min Â· 561 words

Git-over-SSH through Socks 5 Proxy on Windows

Because of my work, I use crappy M$ Windows in my office. And we are behind a bidirectional firewall. So, how do you do if you need to pull/push code with Git-over-SSH in this scenario? You need a Socks 5 that passes the firewall, and some scripting. First, you need to install: Git on Windows - http://code.google.com/p/msysgit/ Connect.c - http://bent.latency.net/bent/darcs/goto-san-connect-1.85/src/connect.html Then, you need a script that connects to the Socks 5 server. Like: [sourcecode lang=‘bash’] #!/bin/sh ...

August 13, 2009 Â· 1 min Â· 200 words