April 06, 2003
The Propaganda Remix Project

[Yet another site with very clever, old-timey posters for printing out, etc., but this one's becoming a book with writing by Vonnegut and Zinn. It seems that the language critique that some are suggesting poets should be engaged in has moved on to the language/image complex, and is already being done by a small army of underground photoshoppers -- something of a phenomenon.]

cover_icon.jpg

The Propaganda Remix Project

45 of the posters in full color, perfect for protest signs or mass photocopying. The book contains a foreword by Kurt Vonnegut, an introduction by Howard Zinn, and political commentary by the Center for Constitutional Rights. (book available in your local bookstore May 1st, 2003 from Seven Stories Press)

Posted by Brian Stefans at April 06, 2003 02:42 PM | TrackBack
Comments

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: Eleanor on January 19, 2004 03:33 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: Randall on January 19, 2004 03:33 AM

A 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: Mary on January 19, 2004 03:33 AM

This will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of

Posted by: Georgette on January 19, 2004 03:34 AM

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