AKMA's Random Thoughts

February 28, 2003

The Full Sermon

The [London] Times Online has published the full text of Rowan Williams’s sermon from yesterday’s enthronement ceremony, of hwich I posted patches yesterday. I can’t sufficiently express my thanks that so thoughtful and articulate a theologian and preacher has accepted this call to serve the church.

More later, if I finish the hermeneutics article in time.

Posted by AKMA at February 28, 2003 12:14 PM | TrackBack
Comments

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: Archilai at January 13, 2004 10:09 AM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Machutus at January 13, 2004 10:09 AM

Let's see an example by converting our favoriteNumber variable from a stack variable to a heap variable. The first thing we'll do is find the project we've been working on and open it up in Project Builder. In the file, we'll start right at the top and work our way down. Under the line:

Posted by: Francisca at January 13, 2004 10:10 AM