What should I name this? O.o

I've been making a comic series for a few weeks now, and I don't have a name... Doesn't feel right, man. Whaddaya think I should name it?

http://master-of-pi.deviantart.com/gallery/
Well, I read them all, liked them, too. It's just, about what specific subjects are your comics going to be, or just practically anything?
MCXVI!
They really make fun of anything I can think of.

What do you mean by MCXVI?
He probably means 1116 by MCXVI.
Call it C.AD (with the point in between). See if you can guess why.
Kyon wrote:
He probably means 1116 by MCXVI.

I don't get it... How're roman numerals supposed to be a comic name?


Chrisname, is it:

Ctrl+Alt+Delete
cad - an ill-bred man, esp. one who behaves in a dishonorable or irresponsible way toward women.
Circa AD
Computer-aided design
If you like roman numerals and pi, you can call it CCCXIV
Taken the style of Ctrl+Alt+Del, I think you should call it Alt F4.
@PiMaster,
Here's a simple C program to explain:
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main()
{
        printf("%c.%c%c = %d.%d%d\n", 'C', 'A', 'D', ('C' - 'A') + 1,
                                                     ('A' - 'A') + 1,
                                                     ('D' - 'A') + 1);
        return 0;
}
Well that's clever! So far yours is the only good name that makes sense....

Kyon wrote:
Taken the style of Ctrl+Alt+Del, I think you should call it Alt F4.

That's a little mean Kyon... Or was that an innocent mistake?
If you wanna be a kewl h4x0rz you could use MCCCXXXVII :)
No. no l33t speak XD
I always disliked that, but after seeing it for so many years, there's not a single time I look at the clock and it's 13:37 and I don't notice it :(
I always notice 1337 o'clock, as well as "Time Not Found". There are others but I can't think of them right now.
I wont lie, I used to love l33t speak as a kid, me and my friends would write in it to eachother all the time.
Went to the shop the other day, the total to amount of cash everything summed up to was 13.37 euros.. (Not kidding) :P
"Cyanide & Happiness" is already taken...
http://www.explosm.net/comics/
Last edited on
Kyon wrote:
Went to the shop the other day, the total to amount of cash everything summed up to was 13.37 euros..

You should have asked them not to charge you.
Last edited on
closed account (iw0XoG1T)
If my logic is right; how about:
01000000010010001111010111000011


please check my logic:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>

char* binary_int( unsigned num, char* buff){
        char *position;
        position = ( buff + ( sizeof( unsigned) * 8));
        *position-- = 0;
        while( position - buff != -1){
                *position-- = ( num & 1) ? '1' : '0';
                num = num >> 1;
        }
        return ++position;
}

int main(){
        char buff[1000];
        float num_float = 3.14;
        void* temp = &num_float;
        unsigned* num = (unsigned*)temp;
        printf( "%s\n", binary_int( *num, buff));
        return 0;
}
Last edited on
Topic archived. No new replies allowed.