Tag Archive for 'proxy'

“Nothing to do in the university” problem?

My teacher unintentionally formatted his work flash-drive.
We tried to recover it with easyrecovery.
It was trial version.
We found full version, on torrent sites.
University is behind proxy, torrents are blocked.
Yesterday I installed rtorrent+rutorrent on my debian server.
Logged into it, downloaded that torrent file.
I can access downloaded file through ftp.
Started ftp-transaction… university proxy blocks 21 port.
Downloaded putty. Logged into web-server.
Moved downloaded file into web-server directory.
Downloaded file from browser in university.
Successfully recovered flash-drive data.
?????
PROFIT!

Proxy in processing

I’ve been studying processing language, and I think it’s great tool for

  • designers, who want to programmmmm
  • and programmers who want to design

More about it you can read at the official page of the project: processing.org/

If you need to work in processing with internet data && you are behind proxy, it’s a little bit trickier.

Place the following code in your setup() function, and everything gonna be alright!

void setup() {
        size(800,600);

        Properties systemSettings = System.getProperties();
        systemSettings.put("http.proxyHost", "your.proxy.org");
        systemSettings.put("http.proxyPort", "8080");
        System.setProperties(systemSettings);
}



Hosted by EOMY.NET