wow - I didn't even know there was a limit - I cant believe anyone would have that much on hand anyways... lol
Public Ping Group - Xanadu Galleria and RAE Collab
I really really extremely want:What even is that number? Eighteen quintillion? o_o
It's 2^32 and 2^64
edit: my math was failing me for a sec
(Because text affects the width of your signature, we suggest testing with all text removed to be sure your width is correct.)
Jeezus! o_O
Now I'm truly concerned about the prices from the prize shop that's coming with the old plot prizes.
was about to correct you :P
Sooo... anyone interested in pooling sP for richest user?
🌑🌒🌓🌔🌕🌖🌗🌘🌑
well thank God I was sick of not being able to walk around with 5 billio---- oh wait I've never seen that much sP in my life... lolol
Omg finally! This will be so useful... Nope, not really xD
Omg finally! This will be so useful... Nope, not really xD
i'll make sure to spend a bit now, so I won't end with 18,446,744,073,709,551,616 sP on hand XDD
contact me if you you find more people to pool for that achievement. i can give a little sP too :P
.....I have no input. Except that I wish I had the patience to save even a quarter of the first total.
Well let me get that 18,446,744,073,709,551,615 out of my vault then XD
My CW thread ❤️
Saggi will be very happy when he claims his taxes!!
There is a total of 1,657,361,775,386 sP on Subeta (1.6 trillion)
USA GDP : 14,964,400,000,000.0 (14.9 trillion)
we're not going to hit the upper limit so soon
(Because text affects the width of your signature, we suggest testing with all text removed to be sure your width is correct.)
basically a single byte of information can signify any number between 0 and 255. there are 8 bits in a byte, each of which the computer reads as either a 0 or a 1. since there are two possibilities for all 8 spots, there are 256 (2^8, or 2x2x2x2x2x2x2x2) possible combinations of 0s and 1s in any given byte.
if you add a second byte, you can now make numbers up to 65,535 (256x256 = 65,536, and since we can also indicate 0, the maximum value is one less).
mysql has 5 integer types that we can assign a field in the database, each of which is a different number of bytes. there's tinyint (1 byte: 0-255), smallint (2 bytes: 0-65,535), mediumint (3 bytes: 0-16,777,215), int (4 bytes: 0-4,294,967,295), and bigint (8 bytes: 0-18,446,744,073,709,551,615).
we just changed onhand from an int to a bigint.