blog stats
seamusc.com

Python Rapidshare Downloader V2

Published on March 14, 2010

Some small changes from Rapidshare Downloader version 1 to get this working.

Haven't fully looked at the case where you have to wait before you can download another file yet.

The try except around the mechanize import is to catch a random import error that is raised. Can't be bothered to figure it out but mechanize still imports ok.

Read More

Automagically download from rapidshare

Published on October 7, 2007

This script will crack the rapidshare captcha and download the file Requires:

  • python-mechanize
  • imagemagick
  • ocrad/gocr

Run with ./downloadFromRapidshare.py http://rapidshare.com/somefile

Read More

Bluetooth remote control

Published on June 21, 2007

Remuco is a system to remotely control Linux music players with JavaME capable mobile devices via Bluetooth.


Read More

How to get Django working on digiweb.ie using django.cgi

Published on June 11, 2007

I just thought I'd post exactly what I did to get django running on digiweb.ie shared hosting

First I downloaded and extracted Django version 0.96 to ~/Django-0.96

All requests will then be forwarded through the django.cgi script which I have saved as cgi-bin/dj

.htaccess

RewriteEngine on
RewriteRule ^cgi-bin/ - [L]
RewriteRule ^media/ - [L]
RewriteRule ^(.*)(/)$ cgi-bin/dj/$1/
RewriteRule ^$ cgi-bin/dj/home/
Read More
Next >>