Search found 21 matches

by Azrael
Sat May 17, 2008 9:19 am
Forum: RANDOM SHIT
Topic: Steam Chats
Replies: 20
Views: 12672

Re: Steam Chats

Jonny is right - adding getchar(); is a messy solution.

Votick is ignoring me so there probably won't be any more steam chats soon :)
by Azrael
Fri May 16, 2008 9:04 am
Forum: RANDOM SHIT
Topic: 3 Word story
Replies: 404
Views: 173849

Re: 3 Word story

not to cry
by Azrael
Fri May 16, 2008 8:57 am
Forum: RANDOM SHIT
Topic: Steam Chats
Replies: 20
Views: 12672

Re: Steam Chats

Fester wrote:oh and ZZZZzzzzzzz! ya try get away from work but yet they bring it here 2 lol
But coding is FUN!
by Azrael
Tue May 13, 2008 8:57 pm
Forum: RANDOM SHIT
Topic: Happy Birthday!
Replies: 20
Views: 12410

Re: Happy Birthday!

You know, the group outing! The one which we'll all be at least 16 for apart from .Genetix :P

Ah, life is good.
by Azrael
Tue May 13, 2008 8:55 pm
Forum: RANDOM SHIT
Topic: Steam Chats
Replies: 20
Views: 12672

Re: Steam Chats

Jonnywhy: No need to shun us just because we have a superior intelligence compared to you :P.
by Azrael
Tue May 13, 2008 10:43 am
Forum: RANDOM SHIT
Topic: Steam Chats
Replies: 20
Views: 12672

Re: Steam Chats

#include <stdio> using namespace std; int main() { while(true) { cout << "You're a pair of geeks!"; } return 0; // will never be called, but needed for the code to compile correctly :/ } Oh, Super, you were sending Votick to /dev/null. Of course. I'm an idiot. But why not just `echo Votick > /dev/n...
by Azrael
Tue May 13, 2008 10:41 am
Forum: RANDOM SHIT
Topic: Happy Birthday!
Replies: 20
Views: 12410

Re: Happy Birthday!

Hey hey hey hey WHAT!?

My birthday is on May 9th. WHY NO SONG FOR ME!

That's it, I'm off to curl up into a foetal ball and cry myself to sleep.
by Azrael
Tue May 13, 2008 7:46 am
Forum: SERVER PROBLEMS
Topic: fixed width?
Replies: 3
Views: 3202

Re: fixed width?

GO GO GREASEMONKEY This also gets rid of the header, giving you EVEN MORE room for content. (Just get rid of the last line if you want the header) // ==UserScript== // @name Make It Bigger Damnit // @namespace asdfjkl // @description Makes Fester's forums bigger // @include http://festers.clanserver...
by Azrael
Tue May 13, 2008 7:33 am
Forum: RANDOM SHIT
Topic: Man accused of trying to cash check for $360,000,000,000
Replies: 14
Views: 9093

Re: Man accused of trying to cash check for $360,000,000,000

"Is it me, or is the Texan flag just the large-print, easy-read version of the American flag?"
by Azrael
Tue May 13, 2008 7:25 am
Forum: RANDOM SHIT
Topic: Steam Chats
Replies: 20
Views: 12672

Re: Steam Chats

cat > /dev/null > Votick What? You're sending the output of cat (which will default to STDIN unless I'm mistaken) to a black hole in your computer - and then sending that to Votick? I think you meant to leave out the first >, which would make it `cat /dev/null > Votick`, which, depending on where t...