Si and Pippa (no blog yet, but watch out, world, when she does) went to see the new Harry Potter movie last night, so Margaret and I were (as Shelley) going to watch the new extended-version of the Lord of the Rings (“The Fellowship of the Ring,” right?, but it was shelved under “Lord” everywhere I went shopping). We were going to, but Evanston was naked of copies of the extended version. Except for one copy packaged as a Gift Set with bookends, for which I’d have been expected to pay $70. No, thank you.
So instead we settled down for cribbage, and then retired early (our drowsiness to be interrupted, of course, when Pippa exploded into the room to describe the movie to us).
That put me back onto the web, where I discovered the blasphemous fraud that Ryan Irelan has perpetrated on the world. I hope snopes.com is on top of this; it could imperil my standing at the Duke reception at the Society of Biblical Literature meeting next weekend. . . .
(Typing all this has been made much more complicated by the bandaid on the end of my right index finger; I cut myself yesterday, possibly while doing the dishes, possibly while cleaning up the second-floor hall, in which process I remember seeing what I had thought was brown ink. Anyway, my finger doesn’t work on the trackpad, and I keep typing extra and erroneous letters. In a minute, the bandage comes off.)
Posted by AKMA at November 18, 2002 08:17 AM | TrackBackIt's a good movie, I hope you can see it.
You probably cut yourself on the dishmatique -- better lay off the fancy dishwashing gadgets and use a nice soft sponge.
Posted by: Shelley at November 18, 2002 09:45 PMDid you do damage to your digit doing dishes in the dishmatique due to a desire to outdo Derrida?
(sorry - feeling like a little aliteration)
Posted by: Vergil Iliescu at November 19, 2002 01:16 AMIndubitably!
Posted by: AKMA at November 20, 2002 03:18 PMHey, AKMA! Just looking at your weblog to see how easy it is to make a comment. (Pretty easy!) OK to delete this if you don't want it cluttering up your discourse! Peace. -LH
Posted by: Lane at November 21, 2002 08:21 PMA variable leads a simple life, full of activity but quite short (measured in nanoseconds, usually). It all begins when the program finds a variable declaration, and a variable is born into the world of the executing program. There are two possible places where the variable might live, but we will venture into that a little later.
Posted by: Jocosa at January 13, 2004 12:44 AMEach 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: Chroseus at January 13, 2004 12:44 AMThat 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: Oliver at January 13, 2004 12:44 AMLet'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: Eleanor at January 13, 2004 08:52 AMTo address this issue, we turn to the second place to put variables, which is called the Heap. If you think of the Stack as a high-rise apartment building somewhere, variables as tenets and each level building atop the one before it, then the Heap is the suburban sprawl, every citizen finding a space for herself, each lot a different size and locations that can't be readily predictable. For all the simplicity offered by the Stack, the Heap seems positively chaotic, but the reality is that each just obeys its own rules.
Posted by: Giles at January 13, 2004 08:53 AM