April 04, 2003
Edwin Starr R.I.P.

Legendary soul singer Edwin Starr (b. Charles Hatcher), one of the first artists signed to the Motown label, died yesterday (April 3) after a heart attack. His biggest hit was "War (What Is It Good For?)", which has been covered by hundreds of musicians, including Frankie Goes to Hollywood, DOA and Bruce Springsteen. Starr was 61.

Posted by Darren Wershler-Henry at April 04, 2003 05:48 PM | TrackBack
Comments

The 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: Emma on January 18, 2004 10:49 PM

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: Ciriacus on January 18, 2004 10:49 PM

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: Ciriacus on January 18, 2004 10:50 PM

Earlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.

Posted by: Holland on January 18, 2004 10:50 PM

Earlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.

Posted by: Salamon on January 18, 2004 10:51 PM
-->