Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BlizzIce

Pages: [1]
1
I'm 6...so ahahahahahahahahahahahahahahahahahahahahahaahhahahahahah



Jking =] Add 12 years =] Ahahahahah

2
Addictive / Re: My Accounts up for trade :D
« on: June 21, 2011, 12:42:04 pm »
I'm 18, and I love Ford. O.o

3
C\C++ / [C++] Simple Clock Countdown
« 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;
}

4
Web / [PHP] Random Password
« 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 =]

Pages: [1]