News:

Wieners, Brats, Franks, we've got 'em all.

Main Menu

ZOMG Bill Gates owns the IRS

Started by MyndFyre, February 02, 2006, 09:53:22 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

CrAz3D

Pretty nifty.

Out of curiosity, what is Gates position with Microsoft?...he own it or..

iago

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.

Joe

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: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.


MyndFyre

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?
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

Newby

- Newby
http://www.x86labs.org

Quote[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

Quote from: Rule on June 30, 2008, 01:13:20 PM
Quote from: CrAz3D on June 30, 2008, 10:38:22 AM
I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

iago

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. 

Newby

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.
- Newby
http://www.x86labs.org

Quote[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

Quote from: Rule on June 30, 2008, 01:13:20 PM
Quote from: CrAz3D on June 30, 2008, 10:38:22 AM
I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Sidoh

He's also the Chief Software Architect.

MyndFyre

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: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

iago

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. 

rabbit