<p>Maybe everyone else already knows the answer to this, but I was curious about the random assignment of 4,294,967,295 posts to some posters. (I mean, a lot of us make a lot of posts, but 4,294,967,295 is, well, a little over the top.)</p>
<p>I didn’t notice at first that it was always exactly 4,294,967,295 posts, but there it is. Not 4,294,967,296, not 4,294,967,000. Always exactly 4,294,967,295. So I did what any normal person would do: I googled it. And found that 4,294,967,295 is 2 to the 32nd power, minus one. This has some significance to computers, apparently. 4,294,967,295 shows up in a lot of unexpected places where some other number really belongs. (4294967295 is also “the largest odd number of sides for which a regular polygon can be constructed using a compass and straightedge. This construction is possible only if the number is a product of distinct Fermat primes (3, 5, 17, 257 or 65537)” but I think that’s because of the 2 ^ 32 thing. Or maybe not.</p>
<p>Anyway, now you know as much as I do. Or maybe not.</p>
<p>2^32-1 is the largest integer a byte can represent. thus if this is the case, people are just getting the “max” assigned to their post count instead of the actual # of posts.</p>
<p>“Actually, 2^8-1 is the largest a ‘byte’ can represent since there are only 8 bits in a byte.”
my bad… meant to say the largets number an <em>int</em> can represent (int is a primitive type in programming, 4 bytes. as the name implies, that’s how integers are usually represented. so it makes sense.)</p>
<p>I heard it started with a few unqualified members with subprime posts. Then the moderators started speculating. Now it’s spreading to other, unmoderated forums. Some say a far-reaching crisis of board collapse is imminent.</p>
<p>Posts in the cafe dont count towards the post count. So if a poster is only posting in the cafes,they can have lots of posts but a post count of zero. For a brief while, I believe the political thread was accidentally crediting to the post count, but I think thats been changed.</p>
<p>^^^ I think so too but just in case Congress should give the Federal moderators 700 billion posts and let them inject them in the forums they deemed appropriate. Some forums will have go into receivership and their posts transferred to the stronger ones (those we cannot afford to loose, say Harvard’s). They should also be able to acquire toxic posts and hold them until somebody can figure out their real value.</p>
<p>This is actually not quite true. That number is the largest known possibility, but as the list of Fermat primes known is very short, it’s not saying too much. It’s possible (and even likely in some sense) that you can do constructions of regular polygons with more sides.</p>
<p>The determination of the size of an unsigned int is compiler and machine dependent. The ILP64 model uses 64-bit integers. I can’t recall what ints were back in the 16-bit days.</p>