July 21, 2003

Quids online

Back issues of Keston Sutherland's Quid, an "occasional journal of poetics, criticism, invective and investigation" are now available online.

I've been waiting for this for a while -- previously, you had to send a quid across the ocean to get one sent to you, and I could never find a quid to do it right.

Will they now change the name to "free"?

I'm especially looking forward to working through some of KS's saucy prose, which I've found intriguing if rough going when he's read in New York in the past.

quid

quid8ii.jpg

Posted by Brian Stefans at July 21, 2003 10:48 AM | TrackBack
Comments

thanks for posting this link
lots of delicious quidishness here

Posted by: p. backonja at July 22, 2003 12:58 PM

Thanks Brian for posting the link to QUID. This is a quick note to say that the issues not yet available online will be so in the near future. No plans to change the name: we pay for it well enough.

K

Posted by: Keston Sutherland at July 29, 2003 08:59 PM

But variables get one benefit people do not

Posted by: Andrew at January 18, 2004 07:12 PM

When a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.

Posted by: Francis at January 18, 2004 07:13 PM

Note the new asterisks whenever we reference favoriteNumber, except for that new line right before the return.

Posted by: Thadeus at January 18, 2004 07:13 PM

Inside each stack frame is a slew of useful information. It tells the computer what code is currently executing, where to go next, where to go in the case a return statement is found, and a whole lot of other things that are incredible useful to the computer, but not very useful to you most of the time. One of the things that is useful to you is the part of the frame that keeps track of all the variables you're using. So the first place for a variable to live is on the Stack. This is a very nice place to live, in that all the creation and destruction of space is handled for you as Stack Frames are created and destroyed. You seldom have to worry about making space for the variables on the stack. The only problem is that the variables here only live as long as the stack frame does, which is to say the length of the function those variables are declared in. This is often a fine situation, but when you need to store information for longer than a single function, you are instantly out of luck.

Posted by: Alan at January 18, 2004 07:13 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: Christopher at January 18, 2004 07:14 PM