Isin't there some script we can write to automatically vote when a person logs onto the site each day? That way we can't forget, it's automatic!
You could set one up as a cron job on a server, somewhere...
At first glace I figured that you could use LWP::UserAgent in Perl and just simply post:
<input type="hidden" name="ses" value="673009605">
<input type="hidden" name="id" value="JimOaks">
to:
http://top4x4sites.com/cgi-bin/arp/rankem.cgi
I was looking into a little bit, it creates a cheese whiz session id each time that page is visited:
<input type="hidden" name="ses" value="673009605">
No problem!
Simply request that page, use a simple regular expression to get your value,
something simple as:
# Replace line breaks and carriage returns
$response =~ s/\r|\n//g;
# Get the cheese whiz Session ID (this could be written so much better, I just simply don't feel like messing with/debugging it)
($session) = $response =~ /<input type=\"hidden\" name=\"ses\" value=\"(\d+)\">/;
Then turn around and use the posting method outlined above with the generated ID using a proxy like TOR, and bam. You could cron a job to vote for TRS at any interval desired through anonymous proxy servers....
They might check the http referer, but this could also be supplemented as well...
Edit:
I can write the script if you want (in Perl), but I won't mess with PHP.
