21
So who knows how long opal omega takes?
// Simple C++ Clock Countdown.
// Coded by: BlizzIce
// Complied with Dev C++ with 0 Errors.
#include <stdio.h>
#include <time.h>
void wait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
int main ()
{
int n;
printf ("Starting countdown...\n");
for (n=10; n>0; n--)
{
printf ("%d\n",n);
wait (1);
}
printf ("FIRE!!!\n");
return 0;
}<?php// Random Password Gen v1.00// Coded By: BlizzIce 6.11.2011// http://freedomhackers.net/function createRandomPassword() { $chars = "abcdefghijkmnopqrstuvwxyz023456789"; srand((double)microtime()*1000000); $i = 0; $pass = '' ; while ($i <= 7) { $num = rand() % 33; $tmp = substr($chars, $num, 1); $pass = $pass . $tmp; $i++; } return $pass;}$password = createRandomPassword();echo "Your random password is: $password";?>

