June 23, 2003

Exchange on Circulars 4

I’m not sure that it’s necessary for a blog to be multi-authored; what it really needs is a mandate, and it’s possible that, were the mandate simply to produce rich, incantatory prose—imagine the Marcel Proust blog—a highly disciplined approach could work. Steve Perry’s Bushwarsblog, for example, succeeds quite well on this level (not the Proustian but the muckraker), as does Tom Mantrullo’s Swiftian Commonplaces. Both of them have “political” agendas, but they are also well-written and thoughtful for what are in effect news publications without an editor. It helps that these two are journalists and conceptualize their blogs as a distinct form of news writing alternative to the mainstream—the individual voice is sharpened by an informed sense of the social arena in which it will resonate (in which the message will ultimately become dulled). Just today, Tom posted a link to the Times story on corporate bloggingyecch—and has coined this aphorism, a detournement from Foucault though sounding somewhat Captain Kirkish to me, to describe his project: “To blog is to undertake to blog something different from what one blogged before.” A version of “make it new” but with the formal precedent being the blog itself—a vow not to let individual “multi-authoring” become equal to corporate mono-glut. Perhaps the model blog is that which responds to the formal issues of other blogs as if they were social issues (i.e. beyond one’s “community”), hence transforming the techne of the writer into a consideration of hypertextual “craft.”

Posted by Brian Stefans at June 23, 2003 05:16 PM | TrackBack
Comments

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: Andrew at January 18, 2004 07:11 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: Zachary at January 18, 2004 07:11 PM

Since the Heap has no definite rules as to where it will create space for you, there must be some way of figuring out where your new space is. And the answer is, simply enough, addressing. When you create new space in the heap to hold your data, you get back an address that tells you where your new space is, so your bits can move in. This address is called a Pointer, and it's really just a hexadecimal number that points to a location in the heap. Since it's really just a number, it can be stored quite nicely into a variable.

Posted by: Tobias at January 18, 2004 07:11 PM

This will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of

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

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: Constance at January 18, 2004 07:12 PM