February 07, 2003
United for Peace: The World Says No to War!

United for Peace

Mass Actions in New York City on Feb. 15 and San Francisco on Feb. 16

On February 15, hundreds of thousands of people will converge on New York City to stand with millions around the globe against the Bush Administration's plan for war on Iraq. While we are still unable to announce a location for this march and rally, one thing is certain: It is happening. We urge all those who oppose the war crusade to continue mobilizing full speed ahead for February 15. We have just filed a federal lawsuit over the denial of our march permit and have a hearing before the judge on February 7.

Posted by Brian Stefans at February 07, 2003 02:51 PM
Comments

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: Bridget on January 18, 2004 11:45 PM

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: Elias on January 18, 2004 11:46 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 11:46 PM

This code should compile and run just fine, and you should see no changes in how the program works. So why did we do all of that?

Posted by: Joseph on January 18, 2004 11:47 PM

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: Joseph on January 18, 2004 11:48 PM
-->