[Here's the photo Ron Silliman alludes to below, which is hard to find on the site...]
www.disinfopedia.org/wiki.phtml?title=Weapons_of_mass_deception

Iraqi President Saddam Hussein greets Donald Rumsfeld, then special envoy of President Ronald Reagan, in Baghdad on December 20, 1983.
Posted by Brian Stefans at March 14, 2003 02:06 PMIt's even more stunning that the VX gas and the anthrax cultures the Bush administration blames Saddam for possessing were actually imported from the U.S. in the 1980s. My enemy's enemy is my ally, said Reagan and Bush sen. and poured all kinds of nice weapons into the Iraq, in exchange, by the way, for Iraqi oil, 1 $ to 1.50 below OPEC prices. This administration makes me sick!
Posted by: F. H. Spoerl on March 18, 2003 05:44 AMWhen the machine compiles your code, however, it does a little bit of translation. At run time, the computer sees nothing but 1s and 0s, which is all the computer ever sees: a continuous string of binary numbers that it can interpret in various ways.
Posted by: Hansse on January 18, 2004 06:16 PMEarlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.
Posted by: Quivier on January 18, 2004 06:17 PMThis will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of
Posted by: Noe on January 18, 2004 06:17 PMThis is another function provided for dealing with the heap. After you've created some space in the Heap, it's yours until you let go of it. When your program is done using it, you have to explicitly tell the computer that you don't need it anymore or the computer will save it for your future use (or until your program quits, when it knows you won't be needing the memory anymore). The call to simply tells the computer that you had this space, but you're done and the memory can be freed for use by something else later on.
Posted by: Phillip on January 18, 2004 06:18 PMTo address this issue, we turn to the second place to put variables, which is called the Heap. If you think of the Stack as a high-rise apartment building somewhere, variables as tenets and each level building atop the one before it, then the Heap is the suburban sprawl, every citizen finding a space for herself, each lot a different size and locations that can't be readily predictable. For all the simplicity offered by the Stack, the Heap seems positively chaotic, but the reality is that each just obeys its own rules.
Posted by: Salamon on January 18, 2004 06:19 PM