Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!sri-spam!nike!ucbcad!ucbvax!apollo.UUCP!rees From: rees@apollo.UUCP (Jim Rees) Newsgroups: mod.computers.apollo Subject: Re: Movie Review & Cautionary Warning Message-ID: <8608060424.AA06929@uw-beaver.arpa> Date: Tue, 5-Aug-86 08:56:38 EDT Article-I.D.: uw-beave.8608060424.AA06929 Posted: Tue Aug 5 08:56:38 1986 Date-Received: Thu, 7-Aug-86 03:04:43 EDT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The ARPA Internet Lines: 27 Approved: apollo@yale-comix.arpa "The Great Wall" is Peter Wang's ("Chan is Missing", "Dim Sum") most recent film. It concerns a Chines-American family's return to the mainland and the comedy (and drama) that results. It is quite a good film, in my opinion, but what concerns this group is that in the background of one scene can be spotted a DN300. The first cameo in a major motion picture by an Apollo? I saw that too, but wasn't really sure whether it was an Apollo or not. More film trivia: In "The Terminator," if you watch the computer stuff going by in the Arnold point-of-view shots, at one point you see the line "VTOC is full." Also, I recently ran across a rather obscure problem in Pascal that I thought I'd bring up. I had an IF statement of the form: if ((p <> NIL) AND (link[p^.lp] = 0)) then ... If you look this up in your favorite reference manual, you will find that Pascal does not guarantee the order of evaluation. This is actually a feature, because usually the compiler can save some computation if it gets to choose. If you need to guarantee the order, it's easy enough to do: if ((p <> NIL) AND THEN (link[p^.lp] = 0)) then ... Nested ifs are not necessary. -------