April 08, 2003
PNAC: Rebuilding America's Defenses

I'm sure a lot of you have come across this elsewhere, but here is a quote from the blueprint drawn up by The Project for the New American Century -- Cheney, Wolfowitz, Rumseld and Jeb Bush are members -- for maintaing a "pax Americana" around the world. Neil Mackay's September 2002 article about the document is all over the internet.

Rebuilding America's Defenses: Strategy, Forces and Resources For a New Century

"In the Persian Gulf region, the presence of American forces, along with British and French units, has become a semipermanent fact of life. Though the immediate mission of those forces is to enforce the no-fly zones over northern and southern Iraq, they represent the long-term commitment of the United States and its major allies to a region of vital importance. Indeed, the United States has for decades sought to play a more permanent role in Gulf regional security. While the unresolved conflict with Iraq provides the immediate justification, the need for a substantial American force presence in the Gulf transcends the issue of the regime of Saddam Hussein. In East Asia, the pattern of U.S. military operations is shifting to the south: in recent years, significant naval forces have been sent to the region around Taiwan in response to Chinese provocation, and now a contingent of U.S. troops is supporting the Australianled mission to East Timor. Across the globe, the trend is for a larger U.S. security perimeter, bringing with it new kinds of missions."

Posted by Brian Stefans at April 08, 2003 02:28 PM | TrackBack
Comments

"Poets, artists, and critics..."

At least one of those words is redundant.

Posted by: Vince on May 10, 2003 11:28 PM

yes

Posted by: Allan on November 29, 2003 07:32 AM

Seth Roby graduated in May of 2003 with a double major in English and Computer Science, the Macintosh part of a three-person Macintosh, Linux, and Windows graduating triumvirate.

Posted by: Aveline on January 18, 2004 10:40 PM

Our next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.

Posted by: Pompey on January 18, 2004 10:41 PM

When 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: Gillam on January 18, 2004 10:43 PM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Emmanuel on January 18, 2004 10:43 PM

When Batman went home at the end of a night spent fighting crime, he put on a suit and tie and became Bruce Wayne. When Clark Kent saw a news story getting too hot, a phone booth hid his change into Superman. When you're programming, all the variables you juggle around are doing similar tricks as they present one face to you and a totally different one to the machine.

Posted by: Winifred on January 18, 2004 10:44 PM
-->