Page 460 of 1084

Re: Ranks

Posted: Sun Feb 03, 2008 11:46 pm
by Reese Riverson
Yeah, that's a problem. ;~;

As for hurting you eyes for a while, yes that can happen to a lot of people. ><

Re: Ranks

Posted: Sun Feb 03, 2008 11:48 pm
by Luckster
Least I'm better about it now. I give myself plenty of space to work and I don't get frustrated so easy.

Re: Ranks

Posted: Mon Feb 04, 2008 2:00 am
by Hunchman801
I used the Lycos WebBuilder when I created my first website. I didn't know HTML in 2001 ^^

Re: Ranks

Posted: Mon Feb 04, 2008 2:51 am
by Reese Riverson
When did you learn HTML?

Re: Ranks

Posted: Mon Feb 04, 2008 1:17 pm
by Hunchman801
In 2003.

Re: Ranks

Posted: Mon Feb 04, 2008 1:41 pm
by Jman
So it was around the time you made PC.

Re: Ranks

Posted: Mon Feb 04, 2008 4:19 pm
by neo
Beggabob does your site still exist?

Re: Ranks

Posted: Mon Feb 04, 2008 5:06 pm
by megajbb
neo wrote:Beggabob does your site still exist?
yes it does.

Re: Ranks

Posted: Mon Feb 04, 2008 5:56 pm
by Reese Riverson
Can you give us the link to your site? :P

Re: Ranks

Posted: Mon Feb 04, 2008 7:17 pm
by megajbb
ok but i only got it off some homework.
http://www.jabhosting.co.uk/magicbox

Re: Ranks

Posted: Mon Feb 04, 2008 7:43 pm
by Luckster
Not exactly what I'd call a 'web site'

Re: Ranks

Posted: Mon Feb 04, 2008 8:28 pm
by Reese Riverson
I'm not so sure if he even typed all those sentenes either. Unless someone checked for mistakes for him. :|

Re: Ranks

Posted: Mon Feb 04, 2008 8:44 pm
by Hunchman801
There are typos anyway.

Code: Select all

if($output > $input) {
	$difference = $output - $input;
	$sign = "+";
} elseif ($output < $input) {
	$difference = $input - $output;
	$sign = "-";
} else {
	$difference = 0;
	$sign = "+";
}
OMFG why write such a complicated code when it can be done in one line?!?

Re: Ranks

Posted: Mon Feb 04, 2008 9:02 pm
by Reese Riverson
Because he isn't a PHP god like you are Monsieur Hunchman.

To our standards, he's... how do I carefully word this... he's basically stupid. Though you, Monsieur, are a super genius.

Re: Ranks

Posted: Tue Feb 05, 2008 1:56 am
by Slayer X
My first website was made back in about 2003/04, I think. Done using basic HTML in Notepad.

Called it "*name removed*'s Cheats Site", and it had a list of videogame cheats in it. My favourite sites at the time were Cheat Code Central, and CheatPlanet, and I wanted to make my own. I was like, 10 at the time though, so I didn't know how to host it or anything, and after many failed attempts I gave up.

Prolly still got it...somewhere. If I can find it, I'll throw it up on GeoCities or something, for old time's sake.

Re: Ranks

Posted: Tue Feb 05, 2008 1:35 pm
by Jman
Obviously, someone needed help with math homework.

Re: Ranks

Posted: Tue Feb 05, 2008 5:01 pm
by megajbb
Hunchman801 wrote:There are typos anyway.

Code: Select all

if($output > $input) {
	$difference = $output - $input;
	$sign = "+";
} elseif ($output < $input) {
	$difference = $input - $output;
	$sign = "-";
} else {
	$difference = 0;
	$sign = "+";
}
OMFG why write such a complicated code when it can be done in one line?!?
listen.
when i went to bed my dad added that code.
jman i didn't need help with the homework i got it off.

Re: Ranks

Posted: Tue Feb 05, 2008 5:33 pm
by Hunchman801

Code: Select all

str_replace("+ -", "- ", "+ " . ($output - $input))
No need to be a PHP god lol.

Re: Ranks

Posted: Tue Feb 05, 2008 7:03 pm
by Reese Riverson
Hunchman, your PHP skills ALWAYS amazes me. :mrgreen:

Hunchman's been working with PHP for MANY years. 8)

Re: Ranks

Posted: Tue Feb 05, 2008 9:36 pm
by Slayer X
Let's have a BASIC version of that program:

CLS
1 PRINT "DO YOU WANT TO ADD OR SUBTRACT? (A/S)"
10 A$ = INKEY$
IF A$ = "a" THEN GOTO 20
IF A$ = "s" THEN GOTO 30
GOTO 10
20 INPUT "FIRST NUMBER" A
INPUT "SECOND NUMBER" B
PRINT A "+" B "=" (A+B)
GOTO 40
30 INPUT "FIRST NUMBER" C
INPUT "SECOND NUMBER" D
PRINT C "-" D "=" (C-D)
GOTO 40
40 PRINT "DO YOU WANT TO SOLVE ANOTHER PROBLEM? (Y/N)"
50 B$ = INKEY$
IF B$ = "y" THEN GOTO 1
IF B$ = "n" THEN STOP
GOTO 50