January 07, 2003

Skid 7

calender-
wise
pull men
from shoulders
and
sell
market prices
in blood
languishing
"natural
rights"
in my confusion

the paper reads to me like a fog
drifting over a plain
repellent with detail (they
say
as if masterminding a tsunami
were less savage than
dying)
my clothes cut the kenneth cole way
such that seduction
parts like
the red sea hypnotized subway crowds
one of those digital "matrix-like" moments that

makes one feel
bourgeois
(bloomberg
should tax them
too,
should tax me
for writing these poems that
aren't so difficult
to read
but put a family through grad school
with three left-wing tenure track positions
substantially filled

Posted by Brian Stefans at January 7, 2003 10:21 AM
Comments

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: Jennette at January 18, 2004 09:59 PM

This variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.

Posted by: Digory at January 18, 2004 10:00 PM

But variables get one benefit people do not

Posted by: Dionisius at January 18, 2004 10:00 PM

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: Winifred at January 18, 2004 10:00 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: Jane at January 18, 2004 10:01 PM