Ears 1,490 Posted February 23 What did Oliver Twist say at the Indian restaurant? Please, can I have samosa? 3 Quote Share this post Link to post Share on other sites
audio_PHIL_e 666 Posted February 23 2b OR NOT(2b) that is ff 1 Quote Share this post Link to post Share on other sites
darthvadersdad 2,447 Super Wammer Posted February 23 1 1 1 Quote Share this post Link to post Share on other sites
audio_PHIL_e 666 Posted February 23 3 hours ago, audio_PHIL_e said: 2b OR NOT(2b) that is ff For them that don't get it, here's a little bit of code you can copy & paste into your text editor: #include <stdio.h> int main (int argc, char* argv[]) { unsigned char byte; unsigned char notbyte; unsigned char result; for (byte = 0; ; byte++) { notbyte = ~byte; result = byte | notbyte; printf("%2x %2x %2x\n",byte,notbyte,result); if (notbyte == 0) {break;} } } Then you can save it as tobe.c and gcc tobe.c -o tobe after which you can run tobe to see the results 1 Quote Share this post Link to post Share on other sites
darthvadersdad 2,447 Super Wammer Posted February 23 ???????? Quote Share this post Link to post Share on other sites
Ears 1,490 Posted February 23 12 minutes ago, darthvadersdad said: ???????? It's witchcraft, putting a spell on counting in 10s.... 1 Quote Share this post Link to post Share on other sites
darthvadersdad 2,447 Super Wammer Posted February 23 7 minutes ago, Ears said: It's witchcraft, putting a spell on counting in 10s.... Thats ok I can count to 10😝 1 Quote Share this post Link to post Share on other sites
audio_PHIL_e 666 Posted February 23 There are 10 kinds of people in this world: them that understand binary and them that don't 1 Quote Share this post Link to post Share on other sites
Tony_J 5,333 Moderator Posted February 23 There are 3 types of people, those that can count and those that can't... 1 1 Quote Share this post Link to post Share on other sites
Ears 1,490 Posted February 24 And the award for most contrived joke of the day goes to......... Did you know that Spiderman has a winter jacket made entirely of Mediterranean flat bread? It’s a Pita Parka. 1 Quote Share this post Link to post Share on other sites
Beobloke 881 Posted February 24 There are 3 types of people, those that can count and those that can't...I always understood that there are two types of people in the world:1. Those that can extrapolate a conclusion from incomplete data. 2 Quote Share this post Link to post Share on other sites
Ears 1,490 Posted February 24 There are two types of people in the world. Those that finish what they start. 1 Quote Share this post Link to post Share on other sites
Tony_J 5,333 Moderator Posted February 24 23 minutes ago, Ears said: There are two types of people in the world. Those that finish what they start. There are two types of people in this world. Those that are apathetic... 2 Quote Share this post Link to post Share on other sites
radiant red 5,126 Super Wammer Posted February 24 7 Quote Share this post Link to post Share on other sites
Ears 1,490 Posted February 24 There arrrrrr two types of people in the world. Those who like pirates, and those who do not..... 1 Quote Share this post Link to post Share on other sites