URL CHANGE!

What do you want to see here? Some more categories, forums, and mods? Hmm...
User avatar
Tank Program
Forum & Project Admin, PhD
Posts: 6712
Joined: Thu Dec 18, 2003 7:03 pm

URL CHANGE!

Post by Tank Program »

Please note the following, it is very important! The Armagetron Forums are switching domain! We are now at http://forums.armagetronad.net/ please update your book marks!
Image
User avatar
Tank Program
Forum & Project Admin, PhD
Posts: 6712
Joined: Thu Dec 18, 2003 7:03 pm

Post by Tank Program »

Also please note that this means that any time you reference the url guru3.sytes.net you should use forums.armagetronad.net!
Image
User avatar
dlh
Formerly That OS X Guy
Posts: 2035
Joined: Fri Jan 02, 2004 12:05 am
Contact:

Post by dlh »

Tank Program wrote:Also please note that this means that any time you reference the url guru3.sytes.net you should use forums.armagetronad.net!
Neat.
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

I noticed. I wasn't logged in on the domain the links on the forum sent me to.
ˌɑrməˈɡɛˌtrɑn
User avatar
dlh
Formerly That OS X Guy
Posts: 2035
Joined: Fri Jan 02, 2004 12:05 am
Contact:

Post by dlh »

Jonathan wrote:I noticed. I wasn't logged in on the domain the links on the forum sent me to.
Same here, I had to log back in. Its good all the redirects are working (for old threads and such)
User avatar
Tank Program
Forum & Project Admin, PhD
Posts: 6712
Joined: Thu Dec 18, 2003 7:03 pm

Post by Tank Program »

You don't all have to type in upper case. I put my announcment large and upper case because there will come a time when I reclaim guru3.sytes.net for my own purposes.
Image
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Only a small portion of all letters is in uppercase. They are large though.
ˌɑrməˈɡɛˌtrɑn
User avatar
Lucifer
Project Developer
Posts: 8743
Joined: Sun Aug 15, 2004 3:32 pm
Location: Republic of Texas

Post by Lucifer »

Jonathan wrote:Only a small portion of all letters is in uppercase. They are large though.
OH yeah?
Check out my YouTube channel: https://youtube.com/@davefancella?si=H--oCK3k_dQ1laDN

Be the devil's own, Lucifer's my name.
- Iron Maiden
User avatar
Lucifer
Project Developer
Posts: 8743
Joined: Sun Aug 15, 2004 3:32 pm
Location: Republic of Texas

Post by Lucifer »

So that's why I had to login then? Good thing I remembered my password. :)
Check out my YouTube channel: https://youtube.com/@davefancella?si=H--oCK3k_dQ1laDN

Be the devil's own, Lucifer's my name.
- Iron Maiden
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Lucifer wrote:
Jonathan wrote:Only a small portion of all letters is in uppercase. They are large though.
OH yeah?
Yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah and yeah!!!
ˌɑrməˈɡɛˌtrɑn
User avatar
Tank Program
Forum & Project Admin, PhD
Posts: 6712
Joined: Thu Dec 18, 2003 7:03 pm

Post by Tank Program »

Well, we now know that Jonathan has wayyy too much free time. Incidently, if anyone has forgotten their password and can't get to their email to reset it all, email me direct or catch me on irc & we'll see if we can't fix it up.
Image
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Actually it doesn't need that much time.

Code: Select all

#include <stdio.h>

void pchar(char c) {
	static unsigned size = 6;
	if(c == '\n')
		putchar(c);
	else {
		printf("[size=%u]%c[/size]", size, c);
		if(++size >= 30)
			size = 6;
	}
}

void pstr(const char *c) {
	while(*c)
		pchar(*(c++));
}

int main(int argc, char *argv[]) {
	int i;
	pstr("Yeah");
	for(i=0; i<99; i++) pstr(" and yeah");
	pstr("!!!\n");
	return 0;
}
ˌɑrməˈɡɛˌtrɑn
User avatar
Phytotron
Formerly Oscilloscope
Posts: 5042
Joined: Thu Jun 09, 2005 10:06 pm
Location: A site or situation, especially considered in regard to its surroundings.
Contact:

Post by Phytotron »

Tank Program wrote:Well, we now know that Jonathan has wayyy too much free time.
Maybe, but it was funny.
User avatar
deja_vu
On Lightcycle Grid
Posts: 11
Joined: Sat May 14, 2005 9:28 pm
Contact:

Post by deja_vu »

Lucifer wrote:So that's why I had to login then? Good thing I remembered my password. :)
Guess who didn't.
Spammers. ;)
User avatar
Lucifer
Project Developer
Posts: 8743
Joined: Sun Aug 15, 2004 3:32 pm
Location: Republic of Texas

Post by Lucifer »

deja_vu wrote:
Lucifer wrote:So that's why I had to login then? Good thing I remembered my password. :)
Guess who didn't.
Spammers. ;)
I'm not sure what you're trying to say. Did you forget your password? :roll:
Check out my YouTube channel: https://youtube.com/@davefancella?si=H--oCK3k_dQ1laDN

Be the devil's own, Lucifer's my name.
- Iron Maiden
Post Reply