Re: Code Optimizing...
"http://www.cssoptimiser.com/" that was i was looking for :P
File size before optimization: 1.79 KB
File size after optimization : 1.39 KB
Saving: 22.37%
:evil:
I found a game creation competition and it seems interesting and there is a lot of prizes for the winner. I'm not gonna be entering the comp, just thought i'd show. :)
http://www.bbgamezone.com/contest.php
Re: My Orginization & My Production (V2)
Actually that isn't true. When using XAMPP or WAMP server you can't use <?=$hello?> and it requires <?php echo $hello; ?> .. you can't even use <? lol.
<?=$ir['blah'];?> wont work unless you take out the semi-colon
and i am running XXAMP and <?=$ir['blah']?> works but not on WAMP
Re: [mccode] MD5 Generator
The fastest computer as far as i know is the IBM blue genie which has been clocked at 1.5 trillion calculations per second (i think), with using that it will still take a long time.
Re: [mccode] MD5 Generator
i could be wrong but i don't think there is a way to decrypt it, but there are sites which will check against their records and show the un-hashed string.
Re: Build Car {v2} and {v1}
if(!empty($ir['hospital'] || $ir['jail']) {
echo 'go away';
$h->endpage();
die()
}
if(!empty($ir['parts'])) {
swtich($ir['parts']) {
case 1:
// only 1 part and do stuff here
break;
case 2:
// 2 parts
break;
}
}
else {
// buy the first part.
}
Re: BBCode Resize
yeah overflow auto, but i don't like 2 scroll bars showing, I'm not sure if auto shows both but you can hide the Y scroll bar
overflow-y:hide; oxerflow-x:auto;
something like that