March 18, 2003
Thu-20 March NYC Baghdad Snapshot Action

Dear friends in New York & Everywhere,

This Thursday 20 March at 9pm will be our second action! We hope that other crews in cities & towns in the US & around the World will poster on the same evening, acting in global solidarity as we continue to give people the opportunity to look into the faces of the citizens of Baghdad.

If you are interested in participating — PLEASE send us an email on Wednesday night about where we are meeting for this Thursday action: newyork2baghdad@riseup.net.

For more information about this project which seeks to share images of Baghdad citizens with people in other parts of the world - please visit our web site:

http://www.nationalphilistine.com

The next few days are fateful ones. The seeming inevitability of this reckless war can cause a sadness in our hearts that could begin to separate & immobilize us -- but it is precisely now at this moment when we must work together & strongly, visibility wage actions for justice.

For the NYC Baghdad Action, where the preparations stand & what you can do to help: As stated in the previous email, this time out we don't have a budget.

-- We need help making copies of the Snapshot Flyers & providing supplies for postering. If you can print any number out, or make copies, or contribute some cash to this please contact us asap.

-- Forward this to people you think might be interested in participating on Thursday bring supplies for postering:
wide clear tape
staple guns & staples
wheatpaste (or wall paper powder), buckets, brushes.

Bring your car, bring friends.

If you are busy, broke, carless, alone-- don't worry about it-- come!

Be sure to check email on Wednesday for meeting location information & other details.

As you can see we have a new email address, we have not been able to access the yahoo account. Many addresses have been lost, please forward this email on. Also, please reply to this address & in the subject line state where you live, so we have this demographic information.

Thank you. NO WAR.

The Baghdad Snapshot Action Crew
newyork2baghdad@riseup.net.

Posted by Brian Stefans at March 18, 2003 09:02 PM
Comments

Before anyone "looks" at the faces in Baghdad, I suggest they take a look at this...

http://www.iwpr.net/index.pl?archive/irq/irq_01_5_eng.txt

The faces you see in Baghdad are the ones "MANDATED" by Saddam. Once our troops get there I am sure they will be very happy to see us.

Posted by: Paul Hart on March 19, 2003 02:27 AM

Nice article

Posted by: Mike on November 29, 2003 07:37 AM

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: Gartheride on January 19, 2004 03:22 AM

Being able to understand that basic idea opens up a vast amount of power that can be used and abused, and we're going to look at a few of the better ways to deal with it in this article.

Posted by: Francis on January 19, 2004 03:22 AM

The rest of our conversion follows a similar vein. Instead of going through line by line, let's just compare end results: when the transition is complete, the code that used to read:

Posted by: Jesse on January 19, 2004 03:23 AM

These secret identities serve a variety of purposes, and they help us to understand how variables work. In this lesson, we'll be writing a little less code than we've done in previous articles, but we'll be taking a detailed look at how variables live and work.

Posted by: Botolph on January 19, 2004 03:23 AM

Inside 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: Jocosa on January 19, 2004 03:24 AM
-->