1st International Longest Tweet Results
Dr_Evil6_6_6 writes "Slashdot had a story about the 1st International Longest Tweet Contest last month, and the winners have just been announced." The winner is impressive.
← Back to Stories (view on slashdot.org)
For those wondering of a better way.
//output lowest 31bits of our 4339bit block of data // Shift down
for( i = 4339; i > 0; i-=31) {
output((wxchar)(bigInt & 0xef));
bigInt = bigInt >> 31;
}
Reverse
// add the 31 bits to the current bitInt // Shift up
while( curInput = input() ) {
bigInt += curInput;
bigInt = bigInt 31;
}
4339 bits is 542 bytes plus three spare bits, so if you wanted to actually use this for something you could use those three bits to define your data format from one of eight types, then "attach" your data payload to the header to generate the sequence of 4339 bits. Some ideas for the payload would be:
UNIX? They're not even circumcised! Savages!
Doh! That should be just "4339 bits" and not "2^4339 bits" which is a somewhat larger value, to put it mildly... I think you could theoretically describe a snapshot of the state of the entire universes in 2^4339 bits, and probably do so several times over as well, let alone the entire Internet. :)
UNIX? They're not even circumcised! Savages!