Sat, 30th Aug 2008 09:25:31
Never fear, this site is here

#nullnetwork.c

Language: C
Written by doug on 2008-01-29 23:22:27

#include <stdio.h>


#define LINE0 	"     terror.   _ _         _                 _   \n"
#define LINE1	"       ___ _ _| | |___ ___| |_ _ _ _ ___ ___| |_ \n"
#define LINE2	"      |   | | | | |   | -_|  _| | | | . |  _| '_|\n"
#define LINE3	"      |_|_|___|_|_|_|_|___|_| |_____|___|_| |_,_|\n"
#define BANNER LINE0 LINE1 LINE2 LINE3
		
char * slogans[7] = {
	"x             geeks of the world, unite and party!",
	"6                for great justice                ",
	"8                  for wakka wakka wakka          ",
	"6                    for teh code                 ",
	"9                       for teh hacks             ",
	"2                         for teh drama           ",
	"1                           for nullnetwork.net   "
	};

int main(int argc, char ** argv) {
int i;
	printf("%s", BANNER);
	for(i = 0; i < 7; i++) {
		printf("%s\r", slogans[i]);
		fflush(stdout);
		sleep(1);
	}
	printf("%s\r \n", slogans[0]);
	return 0;
}
Powered by Debian, Jack Daniels, Guinness, and excessive quantities of caffeine and sugar.