Archive - Apr 9, 2007

Date

Some Ajax hack in getthemlaid.com

in

I found a problem in getthemlaid.com, here is the screencast for it

I have contacted the admins, I think they will fix it soon.

Pong

Never ending Pong animation... Just a entry for the PHP GD contest in June.
PONG

ob_start();
include('GIFEncoder.class.php');
$board_width = 60;
$board_height = 60;
$pad_width = 5;
$pad_height = 15;
$ball_size = 5;
$game_width = $board_width - $pad_width*2 - $ball_size;
$game_height = $board_height-$ball_size;
 
 
//FIND ALL Points
//Initial point
 
$x = 0;
$y = rand(0,$game_height);
$xv = rand(1,10);
$yv = rand(1,10);
$pt[] = array($x,$y);
do{
	$x += $xv;
	$y += $yv;
Honey Pot that kill bots