September 27, 2003

Poets Plays

d00ds - my play is being "performed" on November 8th which y'all gotta see. The Kinski idea is dead, though you won't be disappointed with his replacement -- Harrison Ford!

Segue Reading Series

November 8: Poets' Plays

Why should San Francisco have all the fun? Our day of Poets Plays might be shorter than Small Press Traffic's Poets' Theater Jamboree, but we can assure you that our poet-playwrights Charles Borkhuis, Jordan Davis, Ethan Fugate, and Brian Kim Stefans (who is apparently working on a monologue based on Klaus Kinski) are no less glamorous, and fully intend to "deliver the goods." Or break a leg. Something like that.

Posted by Brian Stefans at September 27, 2003 01:02 AM | TrackBack
Comments

very nice

Posted by: web cam dude at December 2, 2003 01:21 PM

hi all

Posted by: adult chat rooms at January 3, 2004 04:03 PM

.....

Posted by: sex webcam at January 5, 2004 06:59 AM

....18+only site

Posted by: cams at January 5, 2004 07:01 AM

....18+only site

Posted by: cams at January 5, 2004 07:02 AM

Note first that favoriteNumbers type changed. Instead of our familiar int, we're now using int*. The asterisk here is an operator, which is often called the "star operator". You will remember that we also use an asterisk as a sign for multiplication. The positioning of the asterisk changes its meaning. This operator effectively means "this is a pointer". Here it says that favoriteNumber will be not an int but a pointer to an int. And instead of simply going on to say what we're putting in that int, we have to take an extra step and create the space, which is what does. This function takes an argument that specifies how much space you need and then returns a pointer to that space. We've passed it the result of another function, , which we pass int, a type. In reality, is a macro, but for now we don't have to care: all we need to know is that it tells us the size of whatever we gave it, in this case an int. So when is done, it gives us an address in the heap where we can put an integer. It is important to remember that the data is stored in the heap, while the address of that data is stored in a pointer on the stack.

Posted by: Roger at January 19, 2004 01:39 AM

But variables get one benefit people do not

Posted by: Dionise at January 19, 2004 01:39 AM

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

Being able to understand that basic idea opens up a vast amount of power that can be used and abused, and we're going to look at a few of the better ways to deal with it in this article.

Posted by: Thomas at January 19, 2004 01:39 AM

That gives us a pretty good starting point to understand a lot more about variables, and that's what we'll be examining next lesson. Those new variable types I promised last lesson will finally make an appearance, and we'll examine a few concepts that we'll use to organize our data into more meaningful structures, a sort of precursor to the objects that Cocoa works with. And we'll delve a little bit more into the fun things we can do by looking at those ever-present bits in a few new ways.

Posted by: Edwin at January 19, 2004 01:40 AM