http://news.moneycentral.msn.com/provider/providerarticle.asp?Feed=FRB&Date=20060202&ID=5470861
(I've been waiting for a good reason to use "ZOMG")
Hahahaha, the IRS needs to *UPGRADE* to Windows!
That's pretty bad, the normal computers can't do numbers that big. Hahahaha.
QuoteBeing worth $47 billion and the chairman of a multinational corporate behemoth must be a lot harder than it looks. Consider yourselves lucky, folks.
Oh my ass.
Quote from: MyndFyrex86] link=topic=4734.msg53573#msg53573 date=1138935202]
Hahahaha, the IRS needs to *UPGRADE* to Windows!
At every (real) place I've ever worked at (government, university, grocery), financial stuff is done on a proprietary system, not on Windows or Linux or anything. I'm not really sure why, though.
For extra security reasons i'm guessing?
Not likely.
Probably because it's so bloody hard to migrate financial data that it just gets left on whatever system it started on.
But realistically, you don't need a lot of processing power to look after financial stuff, so why bother upgrading? :)
Because they are running tape?
So? If it works, it works.
Quote from: iago on February 03, 2006, 06:28:58 PM
So? If it works, it works.
But it obviously isn't working...
In 199,999,999 out of 200,000,000 cases, it works. I wouldn't consider that important enough to re-do the entire infrastructure.
What's the size of a long? That might have something to do with his incredible fortune and the IRS computers not being able to handle it.
So I'm wondering how they handled Rockafellar's taxes?(the richest man ever to live, worth ~200 billion)
Quote from: Topaz on February 03, 2006, 10:10:39 PM
What's the size of a long? That might have something to do with his incredible fortune and the IRS computers not being able to handle it.
A VB long or a C++ long? A VB long is a 32-bit value, and a C++ long is the size of a system DWORD, which is 64-bit's in a 32-bit machine, and 128-bits on a 64-bit machine. If you're feeling retro and go back to 16-bits, it'll be 32-bits.
Quote from: Topaz on February 03, 2006, 10:10:39 PM
What's the size of a long? That might have something to do with his incredible fortune and the IRS computers not being able to handle it.
The maximum value of a 4-byte value is 4.2 billion, which is probably what they're using if they're having this problem. And Joe is incorrect, a long (in C) is 4 bytes. I'm not aware of any system where it's not 4 bytes. A short is 2 bytes, a long is 4 bytes, and an int is dependant on the system it's running on.
Quote from: GameSnake on February 03, 2006, 10:18:39 PM
So I'm wondering how they handled Rockafellar's taxes?(the richest man ever to live, worth ~200 billion)
I believe (and I could be wrong) that that has been converted (with inflation and stuff). He wasn't actually worth 200 billion, he was worth the equivalent of 200billion at his time.
Also, he died in like 1935ish, which was before computers were invented. So I doubt that they had problems with how the computers calculated his tax.
Not to mention that Rockafellar was worth $200 billion USD (present), as opposed to having a few hundred billion in a vault somewhere.
Pretty nifty.
Out of curiosity, what is Gates position with Microsoft?...he own it or..
He was the CEO, but he's not anymore. I think he's still on the board, and possibly still owns the majority of the shares.
QuoteA short is 2 bytes, a long is 4 bytes, and an int is dependant on the system it's running on.
Ew. I was thinking a long was a system DWORD, an int was a system WORD (I was right, woo!), and I a short was a system HWORD.
Quote from: Joe on February 04, 2006, 06:58:46 PM
QuoteA short is 2 bytes, a long is 4 bytes, and an int is dependant on the system it's running on.
Ew. I was thinking a long was a system DWORD, an int was a system WORD (I was right, woo!), and I a short was a system HWORD.
What is a system HWORD?
Half word?
Yeah, a halfword.
Also keep in mind that Windows and some other OSes misuse the terms 'WORD' and 'DWORD', so they are, overall, pretty meaningless. You're best off just using int8_t, int16_t, and int32_t, or whatever is defined on your system.
Quote from: iago on February 04, 2006, 03:07:09 PM
He was the CEO, but he's not anymore. I think he's still on the board, and possibly still owns the majority of the shares.
He's the CFO.
He's also the Chief Software Architect.
Quote from: iago on February 05, 2006, 01:02:39 PM
Yeah, a halfword.
Also keep in mind that Windows and some other OSes misuse the terms 'WORD' and 'DWORD', so they are, overall, pretty meaningless. You're best off just using int8_t, int16_t, and int32_t, or whatever is defined on your system.
So what do we do when we get to 64-bit computing as the standard? What's a 16-bit value? A QWORD (quarter word)? We already have that, it's quad-word.
I've also never seen a "dh" command in assembly.
Quote from: MyndFyrex86] link=topic=4734.msg54144#msg54144 date=1139242983]
Quote from: iago on February 05, 2006, 01:02:39 PM
Yeah, a halfword.
Also keep in mind that Windows and some other OSes misuse the terms 'WORD' and 'DWORD', so they are, overall, pretty meaningless. You're best off just using int8_t, int16_t, and int32_t, or whatever is defined on your system.
So what do we do when we get to 64-bit computing as the standard? What's a 16-bit value? A QWORD (quarter word)? We already have that, it's quad-word.
I've also never seen a "dh" command in assembly.
16 bits would either be a Quarter-WORD (they'd find a way to abbreviate it) or go unused or just be called a int16_t. You don't really ever HAVE to use terms like "word" and "Dword" in programming, and it's generally a good idea not to, because they aren't consistant across platforms. But because people incorrectly used them in many cases, they got stuck being unable to change it.
Like on Bnet Docs.