Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
Keys / Opal
« Last post by CoKeMan on June 27, 2011, 08:22:08 pm »
So who knows how long opal omega takes?
22
Addictive / Re: My Accounts up for trade :D
« Last post by BlizzIce on June 21, 2011, 12:42:04 pm »
I'm 18, and I love Ford. O.o
23
Addictive / Re: My Accounts up for trade :D
« Last post by Lyle on June 21, 2011, 12:37:39 pm »
Ford = For Old Retarded Drivers.
on bnet its = For Old Retarded Dumbasses

hehe
24
C\C++ / [C++] Simple Clock Countdown
« Last post by BlizzIce on June 18, 2011, 01:06:56 am »
Code: [Select]
// 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;
}
25
Web / [PHP] Random Password
« Last post by BlizzIce on June 11, 2011, 04:30:24 pm »
This is an very simple PHP script to generate a random password.
You can test the script here [LINK]!

Code: [Select]
<?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";?>

Feel free to hack  up the source, improve it and re-post it. Welcome to the world of Open Source =]
26
Keys / Re: Tradeing w3 for anything!!
« Last post by KnIgHtRiDeR on June 06, 2011, 07:52:49 pm »
Your gonna give all the wc3 keys you posted on war-lords.net? oh
27
Keys / Tradeing w3 for anything!!
« Last post by l)re@m$ on June 04, 2011, 04:27:32 pm »
i tradeing wc3s for anything looking for like steam keys like portal 2 i will give around 60 wc3,,,,
28
Addictive / Re: My Accounts up for trade :D
« Last post by EternalReaper on May 19, 2011, 08:15:01 pm »
Boo  :D
29
Addictive / Re: My Accounts up for trade :D
« Last post by l)re@m$ on May 14, 2011, 04:19:15 pm »
I WANT FORD
30
Addictive / Re: My Accounts up for trade :D
« Last post by KnIgHtRiDeR on May 14, 2011, 12:30:27 am »
All this accounts are yukky :D
Pages: 1 2 [3] 4 5 ... 10