[I'd like to reproduce Ron Silliman's recent post on The Social Mark symposium on Circulars but it's proving to hard to format, so I advise going to his blog to read the post -- which goes on to consider Ginsberg and various aspects of affect and content in "political" poetry -- in its entirety.]
"Like its cousin ambiguity, empathy is something that is exceptionally difficult to communicate in any function of life, let alone a poem. It is absolutely not possible in a text that seeks agreement, or which seeks to demonize anyone..."
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: Harman on January 19, 2004 02:15 AMThe most basic duality that exists with variables is how the programmer sees them in a totally different way than the computer does. When you're typing away in Project Builder, your variables are normal words smashed together, like software titles from the 80s. You deal with them on this level, moving them around and passing them back and forth.
Posted by: Abacuck on January 19, 2004 02:16 AMThis 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: Bertram on January 19, 2004 02:17 AMBeing 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: Howell on January 19, 2004 02:18 AMThe Stack is just what it sounds like: a tower of things that starts at the bottom and builds upward as it goes. In our case, the things in the stack are called "Stack Frames" or just "frames". We start with one stack frame at the very bottom, and we build up from there.
Posted by: Blaise on January 19, 2004 02:19 AM