Well, Trevor and I worked hard on it this afternoon, and came up with a compromise: the Wheel-within-wheel symbol would be a sort of main Disseminary logo, and the Hoopoe would be a more informal, affectionate emblem.
I know you all were holding your breath for that one.
Meanwhile, interesting responses to Steve Himmer’s reflections on monasticism abound, and Halley invoked my prayers, and Steve Yost is tangling me up with the brother of my Seabury neighbor, Catherine Wallace. Oh, his name is Jack Miles. (I have to talk to Kate about getting herself a web page.)
I will have much to answer you all about tomorrow, and I have promised my editor that I’ll finish off that old “Integral and Differential Hermeneutics” essay by the end of the week, which will be a trick because Seabury has its exciting twice-a-term Faculty conference this week, and we have a meeting with Garrett Seminary from across the street, and I get together with the very same Kate Wallace on Friday to plan the writing curriculum for entering students for next fall.
But I won’t forget you.
Posted by AKMA at February 22, 2003 10:52 PM | TrackBackSeth 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: Edward at January 12, 2004 07:05 PMBut some variables are immortal. These variables are declared outside of blocks, outside of functions. Since they don't have a block to exist in they are called global variables (as opposed to local variables), because they exist in all blocks, everywhere, and they never go out of scope. Although powerful, these kinds of variables are generally frowned upon because they encourage bad program design.
Posted by: Prudence at January 12, 2004 07:05 PMThis is another function provided for dealing with the heap. After you've created some space in the Heap, it's yours until you let go of it. When your program is done using it, you have to explicitly tell the computer that you don't need it anymore or the computer will save it for your future use (or until your program quits, when it knows you won't be needing the memory anymore). The call to simply tells the computer that you had this space, but you're done and the memory can be freed for use by something else later on.
Posted by: Lettice at January 12, 2004 07:05 PMLet'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: Noe at January 13, 2004 09:59 AMSince 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: Rosanna at January 13, 2004 09:59 AMThis variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.
Posted by: Edward at January 13, 2004 09:59 AM