United Press international reports that Oscar-winning filmmaker Michael Moore is working on a documentary about the "the murky relationship" between former President George Bush and the family of al-Qaida leader Osama bin Laden. The movie, Fahrenheit 911, will suggest that the bin Laden family profited greatly from the association.
According to Moore, the former president had a business relationship with Osama bin Laden's father, Mohammed bin Laden, a Saudi construction magnate who left $300 million to Osama bin Laden. It has been widely reported that bin Laden used the inheritance to finance global terrorism.
Moore said the bin Laden family was heavily invested in the Carlyle Group, a private global investment firm that the filmmaker said frequently buys failing defense companies and then sells them at a profit. Former President Bush has reportedly served as a senior adviser with the firm.
"The senior Bush kept his ties with the bin Laden family up until two months after Sept. 11," said Moore.
Moore said he expects the new movie to be in U.S. theaters in time for the 2004 presidential election. "I expressed exactly what was in the film and instead of being blacklisted, I've not only gotten a deal to fund Fahrenheit 911 but offers on the film after," he said.
sweeeeeeet....
Posted by: Gina on November 26, 2003 12:59 PMWhen compared to the Stack, the Heap is a simple thing to understand. All the memory that's left over is "in the Heap" (excepting some special cases and some reserve). There is little structure, but in return for this freedom of movement you must create and destroy any boundaries you need. And it is always possible that the heap might simply not have enough space for you.
Posted by: Pierce on January 18, 2004 06:48 PMWe can see an example of this in our code we've written so far. In each function's block, we declare variables that hold our data. When each function ends, the variables within are disposed of, and the space they were using is given back to the computer to use. The variables live in the blocks of conditionals and loops we write, but they don't cascade into functions we call, because those aren't sub-blocks, but different sections of code entirely. Every variable we've written has a well-defined lifetime of one function.
Posted by: Jucentius on January 18, 2004 06:49 PMLet's see an example by converting our favoriteNumber variable from a stack variable to a heap variable. The first thing we'll do is find the project we've been working on and open it up in Project Builder. In the file, we'll start right at the top and work our way down. Under the line:
Posted by: Dorothy on January 18, 2004 06:49 PMInside each stack frame is a slew of useful information. It tells the computer what code is currently executing, where to go next, where to go in the case a return statement is found, and a whole lot of other things that are incredible useful to the computer, but not very useful to you most of the time. One of the things that is useful to you is the part of the frame that keeps track of all the variables you're using. So the first place for a variable to live is on the Stack. This is a very nice place to live, in that all the creation and destruction of space is handled for you as Stack Frames are created and destroyed. You seldom have to worry about making space for the variables on the stack. The only problem is that the variables here only live as long as the stack frame does, which is to say the length of the function those variables are declared in. This is often a fine situation, but when you need to store information for longer than a single function, you are instantly out of luck.
Posted by: Barbara on January 18, 2004 06:50 PMThis back and forth is an important concept to understand in C programming, especially on the Mac's RISC architecture. Almost every variable you work with can be represented in 32 bits of memory: thirty-two 1s and 0s define the data that a simple variable can hold. There are exceptions, like on the new 64-bit G5s and in the 128-bit world of AltiVec
Posted by: William on January 18, 2004 06:50 PM