So here's a fun little PHP script I whipped up. It redirects you to a random OCReMix by me.
<? srand(time()); $mixes = array('01095', '01178', '01463', '00758', '01154', '01069', '01235', '01374', '01316', '01286', '01507', '01343', '01044', '00982', '01129', '00943', '01010', '01591', '01079'); $random = (rand()%count($mixes)); $destination = 'http://www.ocremix.org/remix/OCR' . $mixes[$random] . '/'; header( "Location:" . $destination ); ?>
The remix ID numbers are stored in the $mixes array; if you want to specify your own mixes, just replace the numbers I have there with your own 5-digit ID numbers for your mixes.
You can find the remix id number in the remix's URL. Ex:
ocremix.org/remix/OCR01591
01591 is the remix id number for my Twilight Princess remix.
Replace the numbers and save the code to a .php file and store it on a server that lets you use PHP. Then, whenever you point your browser to that file, it'll redirect you.
I've got mine stored here:
http://darkesword.com/randommix.php