March 21, 2003
Moveon.org: Citizens' Declaration

Dear friend,

I'm writing to ask you to join me in signing a Citizens' Declaration reaffirming our commitment to international cooperation.

The outbreak of war is not the end of the fight for peace -- only the beginning. Around the globe, people are joining together in the declaration below. We will be announcing it in a press conference on Friday, and we need your help to make it as big as possible.

Signing up will only take a minute of your time, but it'll send a message that the momentum built through our opposition to war in Iraq will only keep growing.

You can sign up at:

http://www.moveon.org/declaration/

Here's the text of the Declaration:

A CITIZENS' DECLARATION

As a US-led invasion of Iraq begins, we, the undersigned citizens of many countries, reaffirm our commitment to addressing international conflicts through the rule of law and the United Nations.

By joining together across countries and continents, we have emerged as a new force for peace. As we grieve for the victims of this war, we pledge to redouble our efforts to put an end to the Bush Administration's doctrine of pre-emptive attack and the reckless use of military power.

------------

Thank you.

Posted by Brian Stefans at March 21, 2003 02:06 AM
Comments

I support the citizens declaration

Posted by: J Leeson on March 24, 2003 06:15 PM

Saddams version of "peace":

http://sportsillustrated.cnn.com/si_online/news/2003/03/24/son_of_saddam/

Posted by: Paul Hart on March 25, 2003 04:34 AM

This variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.

Posted by: Isabella on January 18, 2004 07:23 PM

Note the new asterisks whenever we reference favoriteNumber, except for that new line right before the return.

Posted by: Gerrard on January 18, 2004 07:24 PM

Let'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: Prospero on January 18, 2004 07:24 PM

This 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: Agnes on January 18, 2004 07:25 PM

This 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: Cassandra on January 18, 2004 07:25 PM
-->