May 16, 2003

Book Party

[My book -- see below -- will also be available at this.]

ROOF, THE FIGURES, and GRANARY BOOKS
invite you to a party
Thursday, May 29th, 2003
at JAMES COHAN GALLERY
533 W. 26th Street, NYC
from 6-8

for the following new books:

SEEING OUT LOUD by Jerry Saltz
DAY by Kenneth Goldsmith
LIGHTS OUT by Geoffrey Young & James Siena

PAGE by Hannah Weiner
MUSIC OR HONESTY by Rod Smith
SNOWBALL'S CHANCE by John Reed
DURER IN THE WINDOW by Barbara Guest

THE DIK-DIK'S SOLITUDE: New & Selected Works by Anne Tardos
TURNING LEAVES OF MIND by Ligorano / Reese with Gerrit Lansing
YODELING INTO A KOTEX by Ron Padgett & George Schneeman

Refreshments Served

Posted by Brian Stefans at May 16, 2003 07:58 PM
Comments

When the machine compiles your code, however, it does a little bit of translation. At run time, the computer sees nothing but 1s and 0s, which is all the computer ever sees: a continuous string of binary numbers that it can interpret in various ways.

Posted by: Catherine at January 19, 2004 01:44 AM

This 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: Magdalen at January 19, 2004 01:44 AM

This 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: Thomas at January 19, 2004 01:45 AM

When compared to the Stack, the Heap is a simple thing to understand. All the memory that's left over is "in the Heap" (excepting some special cases and some reserve). There is little structure, but in return for this freedom of movement you must create and destroy any boundaries you need. And it is always possible that the heap might simply not have enough space for you.

Posted by: Marmaduke at January 19, 2004 01:46 AM

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: Lucas at January 19, 2004 01:46 AM