April 28, 2003
MoveOn: "We'll throw out Bush and the Republicans using every means available"

The war in Iraq is over; the U.S. occupation of Iraq has now begun. In an unnecessary war, victory is never sweet: American soldiers, Iraqi civilians, and Iraqi soldiers lost their lives in a conflict that never should have happened. That's not victory, that's tragedy.

The hawks in the Bush Administration see this as a vindication of their belligerent world view. Never mind that we haven't found any weapons of mass destruction; never mind that Iraqi democracy (or even security) is nowhere in sight. The hotter heads have prevailed: pre- emptive unilateralism is now the official policy of the U.S.. Vice President Cheney, Secretary Rumsfeld, Paul Wolfowitz, and Richard Perle are now thinking even bigger about the "projection of American power." In the chilling words of a senior official close to the Bush administration, "Anyone can go to Baghdad. Real men go to Tehran."

Folks, we just have to stop this madness, and there's really only one way to do that: We need to throw these bums out. The good news is that over the last few months, we've built a base that just may be large enough to succeed. MoveOn's total membership is now over 1.3 million. We've taken out ads, written letters, delivered mountains of petition signatures, and taken action in hundreds of cities. And now we need to turn our attention toward one goal: regime change in the USA, the best way to repudiate Bush's policy of war.

Are you in? If you're willing to help show Bush the door in 2004, just click below. We'll count you among the participants in this next phase of the peace movement.

http://www.moveon.org/pac/newpres

We'll throw out Bush and the Republicans using every means available: by registering a wave of new voters, by organizing to make sure they get to the polls on election day, by raising enough money to compete with the President's mountain of special interest money, and by volunteering for political campaigns. We'll make it easy for you to play a part.

President Bush believes he doesn't have to listen to the American public -- which, even during war, has overwhelmingly been skeptical or strongly resistant to the idea of an American empire. He has decided that his faith in the military takes precedence over his faith in democracy. The election in 2004 is our chance to take our democracy back.

Polls show overwhelmingly that American's do not trust President Bush to revive the failing economy. They're just as concerned with the Administration's assault on civil rights, civil liberties and the environment. Last week in New Orleans, Presidential Advisor Karl Rove said that this will be a "close, competitive" race. If all of us get involved, it won't just be tight. We'll win.

And that will go down in history. It will demonstrate that we mean what we say -- that we have the passion and the commitment to see our approach to foreign policy through. It will demonstrate that politicians who seek to curry favor through belligerence face political consequences, and that those who advocate a reasonable, multilateral foreign policy will be rewarded. And it will set the stage for an American policy that leads the world into a cooperative and safe future.

Let's elect a new President in 2004, and put an end to the politics of unnecessary war.

Sincerely,

--Carrie, Eli, Joan, Peter, Wes, and Zack
The MoveOn Team
April 24th, 2003

Posted by Brian Stefans at April 28, 2003 07:52 AM | TrackBack
Comments

Being an 80 year old veteran who served before,during & after WW2 I want to thank you for your efforts for peace in the world.We are slowly slipping into the abyss & it is now up to people like you to help the world,especially it`s children, to find an answer to this mighty military machine that the U.S has. It has not been built for peace but war. I don`t think the American people want that because they are a peaceful people.

Posted by: Maurice Mines on July 7, 2003 09:05 PM

Great! Let's not vote for bush...who the heck should we vote for?!

Posted by: adrian chalifour on September 5, 2003 06:56 PM

I like your web design

Posted by: Marck on November 27, 2003 04:29 AM

To 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: Arnold on January 18, 2004 06:53 PM

Note first that favoriteNumbers type changed. Instead of our familiar int, we're now using int*. The asterisk here is an operator, which is often called the "star operator". You will remember that we also use an asterisk as a sign for multiplication. The positioning of the asterisk changes its meaning. This operator effectively means "this is a pointer". Here it says that favoriteNumber will be not an int but a pointer to an int. And instead of simply going on to say what we're putting in that int, we have to take an extra step and create the space, which is what does. This function takes an argument that specifies how much space you need and then returns a pointer to that space. We've passed it the result of another function, , which we pass int, a type. In reality, is a macro, but for now we don't have to care: all we need to know is that it tells us the size of whatever we gave it, in this case an int. So when is done, it gives us an address in the heap where we can put an integer. It is important to remember that the data is stored in the heap, while the address of that data is stored in a pointer on the stack.

Posted by: Court on January 18, 2004 06:54 PM

To 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: Mark on January 18, 2004 06:54 PM

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: Benjamin on January 18, 2004 06:55 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: Harman on January 18, 2004 06:56 PM
-->