I’m writing some follow-up notes to the places we visited on our tour, so (of course) I’m curious to know what the postal mail addresses are for these locations.
Here are the sites for the various cathedrals we visited:
Rochester Cathedral
Christ Church Cathedral
St. Paul's Cathedral
The American Cathedral in Paris
If you have a spare hour or so, see if you can find the mailing addresses for the Cathedral Chapter (or other central location) of each institution on its site. The American Cathedral gets bonus points for having the address on its main page, though that’s hidden behind a useless decorative introductory screen. Christ Church was next easiest, as its address is prominently displayed on the main page for Christ Church College. Rochester Cathedral is a non-starter, and St. Paul’s simply doesn’t seem to want to divulge where one can contact the chapter — especially frustrating on as large and elaborate a site as theirs, where so many pages might possibly list a mailing address.
I know there are other ways of getting that information; I’ve worked some of them out. My point is that it’s quite bizarre that so important and so small a bit of information is so difficult (in some cases, impossible) to find on the web sites of such prominent cultural institutions.
Posted by AKMA at August 25, 2003 10:10 AM | TrackBackIts not just cultural institutions! For my job before seminary, I frequently had to call admissions departments and career centers at other universities - it sometimes took six or seven screens before I could an address or phone number!
Posted by: Susie at August 25, 2003 12:10 PMThis is not just a cathedral problem, nor just a postal address problem. Try finding out how to contact anybody at all at Lambeth Palace from www.archbishopofcanterbury.org for example.
I would suggest that not providing email addresses or telephone numbers is a greater sin of omission than not providing postal addresses.
Simon
Posted by: Simon at August 25, 2003 03:42 PMWhat up, AKMA? No link to Westminster Cathedral?
Posted by: Dennis at August 27, 2003 05:31 PMA common sin of the web-centric - forgetting that outside the net there is a real brick-and-mortar world with real people in it.
Posted by: Wes at August 28, 2003 03:50 PMBut variables get one benefit people do not
Posted by: Cesar at January 13, 2004 03:35 AMOur next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.
Posted by: Stephen at January 13, 2004 03:36 AMEarlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.
Posted by: Owen at January 13, 2004 03:36 AMThe rest of our conversion follows a similar vein. Instead of going through line by line, let's just compare end results: when the transition is complete, the code that used to read:
Posted by: Owen at January 13, 2004 12:55 PMThe 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: Bellingham at January 13, 2004 12:55 PMWhen Batman went home at the end of a night spent fighting crime, he put on a suit and tie and became Bruce Wayne. When Clark Kent saw a news story getting too hot, a phone booth hid his change into Superman. When you're programming, all the variables you juggle around are doing similar tricks as they present one face to you and a totally different one to the machine.
Posted by: Dudley at January 13, 2004 12:55 PM