Name: Anonymous 2009-12-29 1:33
[1] Write an IRC bot that pretends not to be a bot.
// irc connect/etc. bullshit here
for (;;) {
sleep(120);
fprintf(irc_conn, "I'm totally not a bot you guys!!\n");
}
// cleanup