Friends,
Along with the Saturday march in NYC, groups large and small are gathering to increase the heat on the streets. For those interested in engaging in non-violent direct action there are two meetings planned for Sunday, March 23, plus the Baghdad Snapshot Sunday Action....

One:
Sunday, March 23, 10AM
----------------------
This meeting is for an action involving a number of different groups and will happening either Sunday or Monday. Location for the meeting is strictly on need-to-know basis. PLEASE CONTACT ME IF YOU ARE INTERESTED:
manwichartist@yahoo.com or call me: 212-966-0804
TWO:
Sunday, March 23, 5PM
----------------------
United Methodist Church
145 W. 4th St
This meeting is for a larger style direct action/protest for the coming week/s. Open to any and all.
THREE:
Sunday, March 23, 9PM
---------------------
Baghdad Snapshot Action (rain day)
The BSA crew will be on the streets Sunday night postering pics all around Manhatten. To get involved contact: newyork2baghdad@riseup.net
P.
Baghdad Snapshot Action
http://www.nationalphilistine.cok
Iraq peace team
http://www.iraqpeaceteam.org
United for peace and justice
http://www.unitedforpeace.org
yes
Posted by: Steven on November 29, 2003 07:46 AMThe 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: Isabella on January 18, 2004 08:25 PMNote 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: Howell on January 18, 2004 08:26 PMA variable leads a simple life, full of activity but quite short (measured in nanoseconds, usually). It all begins when the program finds a variable declaration, and a variable is born into the world of the executing program. There are two possible places where the variable might live, but we will venture into that a little later.
Posted by: Arnold on January 18, 2004 08:27 PMThese 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: Ebulus on January 18, 2004 08:27 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: Nicholas on January 18, 2004 08:28 PM