Be a Supporter!
Response to: PHP Snowball. Posted July 4th, 2008 in Programming

echo "That's a lot of cats, meow :3";
$cheezburger = curl_init();

$cheezburger = array();
if ($cheezburger["cheese"] == TRUE) {

Auto Clicking in 2 places Posted July 4th, 2008 in Programming

I was wandering, i got this friend, which thinks hes better then me in anything.
He challenged me and him to find a proggram or create one, and the first one to find it will be the winner.
i really want to win, and im also very interested, how or where can i make or find a proggram that clicks in 2 places which i choose, at times intervals between them, and how does it works?

Response to: Programming Regs Lounge Posted June 29th, 2008 in Programming

Cool Thread

Response to: 24 Card Crusher Posted June 29th, 2008 in Art

lol

Response to: Car Chase! Verooom... Posted June 29th, 2008 in Art

i have a gut feeling you aint made it your self...

Response to: Some Fanart Pic I Drew Posted June 29th, 2008 in Art

nice sketching you did overthere, you should color it, but not too bright so the effect of the japanese pic will stay :).

i wish she was my girlfriend, cause my sucks,
and she the post and broke up with me and then she stabbed me with a kitchen knife and i lost 8 pounds of blood.

Response to: It's a turtle. Posted June 29th, 2008 in Art

lol?

Response to: Artwork: Everybody Loves Smiley 9 Posted June 29th, 2008 in Art

show some more, and btw, not everyone love mario...
me personally thinks hes gay.

Response to: Daniel123297's Art Thread! Posted June 29th, 2008 in Art

thats pretty lame and pretty lazy man...

Response to: vector mania Posted June 29th, 2008 in Art

your a really good artist, the first pic you posted was just disturbing!

you should really make a offical thread for your work. :)

Response to: The Pivot Showcase Posted June 29th, 2008 in Art

This is a really cool thread. i should post here something!

Response to: Ancient art. Posted June 29th, 2008 in General

Thats a very disturbing image...
its make me question my sexuality.

Response to: Screenshots of upcomming projects? Posted June 29th, 2008 in Programming

At 1/1/08 10:54 AM, elbekko wrote: Very nice smulsey >=)

your signture is hilarious

Response to: Turning off other computers? Posted June 29th, 2008 in Programming

Thats Pretty much the most noob hacker ive ever seen.

go get a life or a book.

Response to: Cool Programs Posted June 29th, 2008 in Programming

Thats a pretty stupid idea...

Response to: Computer Science Student Posted June 29th, 2008 in Programming

even though i quit making games long ago this truley helped me.
thankes.

Response to: What type of MD encryption is this? Posted June 29th, 2008 in Programming

If its md5() it cant be cracked, thats way its an encryption method, if it could be cracked, no one would use it!

Response to: Functions breaking out of layout? Posted June 29th, 2008 in Programming

may be it because of something in your DB?

Response to: text over an image? Posted June 29th, 2008 in Programming

you know you just could do some div codes to the text would be above the image, but that will require some direction and understand of the x and y variables.

Response to: Google Adsense Issues Posted June 29th, 2008 in Programming

why wont you try contacting with google about it?

Response to: Tableless layout Div background. Posted June 29th, 2008 in Programming

I just godda say thats a horrible design

Response to: php cURL Posted June 29th, 2008 in Programming

Why do you even start with curl?

Response to: css bottom??? Posted June 29th, 2008 in Programming

At 6/29/08 05:09 AM, adam2510 wrote: and i have told it to go to 100 px right of its original position but its not

Dude, Listen, with CSS you cant make it right at the bottom, as i can tell from the picture of your site, the "content box" at the middle of the screen, is like a magnet for the copy rights, if you want them down, you need to extend your "content box" all the way down.

i think its the only way.

Response to: Good (free) 2d Physics Apis [c++] Posted June 29th, 2008 in Programming

but isnt that will completly reset the proggram?

Response to: Php: Mail() Vs Hotmail? Posted June 29th, 2008 in Programming

At 6/29/08 05:45 AM, henke37 wrote: Just send more meta data than the from header, send nice messages that people does not mark as spam and setup the DNS entries for the domain properly. And don't jump around with loads of different IP-addresses.

what do you mean setup the dns entries?

Response to: Help with my Project, Php poker! Posted June 29th, 2008 in Programming

At 6/28/08 06:34 PM, different wrote: Simple. Each card should have a 'value', and this would increase if you got a full house or a straight flush (or any other poker combo). Therefore in a 2, 3, 4, 7, 8 card hand, the 8 has the least value because it's far away from the flush you want. In situations where any card is neither good or bad it could either be a random decision, or the AI could have a certain 'strategy' - which might be to retain all picture cards, or only collect spades, etc.

Firstly you work out the thinking and then the code. :-)

I dont think i got it, can some one help me for real and not tell me the code or something and thats it, but to help me so ill understand what to do if i get stuck?

Response to: Professional Keyloggers? Posted June 29th, 2008 in Programming

At 6/28/08 03:23 PM, AnalogStick wrote: I need a professional (NOT A VIRUS/TROJAN) keylogger. I've searched google and it came up with numerous results, but I don't know which to trust so if any of you know a safe keylogging program which will not fuck up my computer please tell.

Can you Really Trust any keylogger? every one is trying to get all of your personal details so there is no actuall way to know for sure if this key logger is trust worthy, and i did once downloaded a virus for download.com so dont tell me that site is trustworthy!

Response to: Help with my Project, Php poker! Posted June 28th, 2008 in Programming

as i recon yesterday wasnt a day off...
but Thankes, that answers my second question.
but i still need to know how to do that the "poker player" aka the user that is playing the game, can decide which card he wants to hold, and then the other cards will get back into the deck, and he will get a new one.

Help with my Project, Php poker! Posted June 27th, 2008 in Programming

This is My code so far.

<?php
$play = $_POST["cardnum"];
$joker = $_POST["Joker"];
$deck = array('Heart 1','Heart 2','Heart 3','etc....");
if(!$joker)
   {
   array_pop($deck);
   array_pop($deck);
   }
shuffle($deck);
$player_deck = array(array_pop($deck),array_pop($deck),array_pop($deck)
,array_pop($deck),array_pop($deck));

now $joker is a TRUE/FALSE var which indicates whatever jokers apply to the DECK.
$deck is the current "deck" of all cards (56 or 58),
$player_deck is the Cards that the player currently have,
$play is a var which i will later use to decide which poker game im playing right now.

i only want currently to understand where do i need to go from here.
i got help from a good person here and there, but i got sutck again and i dont know here to go.

i need to know how to do that the "poker player" aka the user that is playing the game, can decide which card he wants to hold, and then the other cards will get back into the deck, and he will get a new one.

and if someone cans, i also want to know how can i make a function that will recognise that the player has a 2 pair, 3 pair, full house, stright, flush and that kind of stuff.

Thankes in advance,
Danny...

Response to: Yet Another Php Q Posted June 27th, 2008 in Programming

Geez, Thankes for putting so much effort in helping me!
i really got it, and i almost made the PHP part of the poker game,
your really a very good person :)))).