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?
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.
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.
If you wanna be a kewl h4x0rz you could use MCCCXXXVII :)
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
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
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