Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.folklore.computers > #161207

Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY")

From usenet@only.tnx (Questor)
Newsgroups alt.folklore.computers
Subject Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY")
Organization ask the NSA
Message-ID <56ec937f.654481@nntp2.rawbw.com> (permalink)
References (16 earlier) <PM00052E2A1E9F0CCD@aca43ce1.ipt.aol.com> <dktt2nF53ilU1@mid.individual.net> <PM00052E3E6355F0A6@aca2d627.ipt.aol.com> <56eaee8b.9626141@nntp2.rawbw.com> <PM00052E51FCB72C79@aca42417.ipt.aol.com>
Date 2016-03-18 23:47 +0000

Show all headers | View raw


On 18 Mar 2016 12:45:55 GMT, jmfbahciv <See.above@aol.com> wrote:
>Questor wrote:
>> By your own admission, you don't know what happened.  The fact that
>> you know the capabilities of TOPS-10 utilities is immaterial.

>I don't know the precise command which was used.

Admitting your ignorance is the first step on the road to knowledge.

>> SO FUCKING WHAT!!  You can't set an address break until you
>> know the address.  And you continue to ignore the key question --
>> how do you determine what address to break on?
>There are many, many ways to find that.  You can examine the code
>as a user or from the monitor.

In other words:  use DDT!  Which is what I've been saying all along.


>There is a bit for every point
>so that the program can "remember" which points had been scored;

Completely wrong.  There is no "bit for every point."

>the program can't remember by keeping a simple accumulation
>of points made.

Of course it can.  Here's the actual code:

============================================================
C  THE PRESENT SCORING ALGORITHM IS AS FOLLOWS:
C     OBJECTIVE:          POINTS:        PRESENT TOTAL POSSIBLE:
C  GETTING WELL INTO CAVE   25                    25
C  EACH TREASURE < CHEST    12                    60
C  TREASURE CHEST ITSELF    14                    14
C  EACH TREASURE > CHEST    16                   144
C  SURVIVING             (MAX-NUM)*10             30
C  NOT QUITTING              4                     4
C  REACHING "CLOSNG"        25                    25
C  "CLOSED": QUIT/KILLED    10
C            KLUTZED        25
C            WRONG WAY      30
C            SUCCESS        45                    45
C  CAME TO WITT'S END        1                     1
C  ROUND OUT THE TOTAL       2                     2
C                                       TOTAL:   350
C  (POINTS CAN ALSO BE DEDUCTED FOR USING HINTS.)

20000	SCORE=0
	MXSCOR=0

C  FIRST TALLY UP THE TREASURES.  MUST BE IN BUILDING AND NOT BROKEN.
C  GIVE THE POOR GUY 2 POINTS JUST FOR FINDING EACH TREASURE.

	DO 20010 I=50,MAXTRS
	IF(PTEXT(I).EQ.0)GOTO 20010
	K=12
	IF(I.EQ.CHEST)K=14
	IF(I.GT.CHEST)K=16
	IF(PROP(I).GE.0)SCORE=SCORE+2
	IF(PLACE(I).EQ.3.AND.PROP(I).EQ.0)SCORE=SCORE+K-2
	MXSCOR=MXSCOR+K
20010	CONTINUE

C  NOW LOOK AT HOW HE FINISHED AND HOW FAR HE GOT.  MAXDIE AND NUMDIE TELL US
C  HOW WELL HE SURVIVED.  GAVEUP SAYS WHETHER HE EXITED VIA QUIT.  DFLAG WILL
C  TELL US IF HE EVER GOT SUITABLY DEEP INTO THE CAVE.  CLOSNG STILL INDICATES
C  WHETHER HE REACHED THE ENDGAME.  AND IF HE GOT AS FAR AS "CAVE CLOSED"
C  (INDICATED BY "CLOSED"), THEN BONUS IS ZERO FOR MUNDANE EXITS OR 133, 134,
C  135 IF HE BLEW IT (SO TO SPEAK).

	SCORE=SCORE+(MAXDIE-NUMDIE)*10
	MXSCOR=MXSCOR+MAXDIE*10
	IF(.NOT.(SCORNG.OR.GAVEUP))SCORE=SCORE+4
	MXSCOR=MXSCOR+4
	IF(DFLAG.NE.0)SCORE=SCORE+25
	MXSCOR=MXSCOR+25
	IF(CLOSNG)SCORE=SCORE+25
	MXSCOR=MXSCOR+25
	IF(.NOT.CLOSED)GOTO 20020
	IF(BONUS.EQ.0)SCORE=SCORE+10
	IF(BONUS.EQ.135)SCORE=SCORE+25
	IF(BONUS.EQ.134)SCORE=SCORE+30
	IF(BONUS.EQ.133)SCORE=SCORE+45
20020	MXSCOR=MXSCOR+45

C  DID HE COME TO WITT'S END AS HE SHOULD?

	IF(PLACE(MAGZIN).EQ.108)SCORE=SCORE+1
	MXSCOR=MXSCOR+1

C  ROUND IT OFF.

	SCORE=SCORE+2
	MXSCOR=MXSCOR+2

C  DEDUCT POINTS FOR HINTS.  HINTS < 4 ARE SPECIAL; SEE DATABASE DESCRIPTION.

	DO 20030 I=1,HNTMAX
20030	IF(HINTED(I))SCORE=SCORE-HINTS(I,2)

C  RETURN TO SCORE COMMAND IF THAT'S WHERE WE CAME FROM.

	IF(SCORNG)GOTO 8241

C  THAT SHOULD BE GOOD ENOUGH.  LET'S TELL HIM ALL ABOUT IT.

	TYPE 20100,SCORE,MXSCOR,TURNS
20100	FORMAT(///' YOU SCORED',I4,' OUT OF A POSSIBLE',I4,
	1	', USING',I5,' TURNS.')
============================================================

Perhaps now is the time to shut the fuck up and admit you have no clue what
the hell you're talking about.

Back to alt.folklore.computers | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-10 15:55 -0800
  Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") The New Other Guy <Newsgnus@gmail.com> - 2016-03-10 21:39 -0800
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-11 06:32 +0000
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-11 09:24 +0100
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-11 17:18 +0000
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Charles Richmond" <numerist@aquaporin4.com> - 2016-03-11 16:17 -0600
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-12 18:41 +0100
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-12 18:14 -0800
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-12 20:39 -0600
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-12 19:27 -0800
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-13 09:04 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Stephen Sprunk <stephen@sprunk.org> - 2016-03-13 12:58 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:25 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-14 14:45 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-14 18:12 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-15 17:30 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:31 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:28 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 13:29 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dave Garland <dave.garland@wizinfo.com> - 2016-03-15 22:45 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 16:29 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-16 09:27 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-16 14:33 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Stephen Sprunk <stephen@sprunk.org> - 2016-03-16 09:47 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-14 20:02 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-15 09:57 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 11:58 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-14 19:07 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-14 20:24 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-14 19:59 -0400
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-11 06:18 -0500
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bud Frede <frede@mouse-potato.com> - 2016-03-11 06:24 -0500
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-11 17:18 +0000
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-11 17:38 +0000
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-11 13:48 -0600
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-11 19:12 -0500
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Melzzzzz <mel@zzzzz.com> - 2016-03-12 02:20 +0100
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-11 18:02 -0800
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-12 03:09 -0500
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-12 09:20 -0800
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-12 15:53 -0500
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-12 16:27 -0800
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-12 19:13 -0800
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-12 22:30 -0500
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-13 11:33 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-13 13:46 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-13 17:41 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-13 18:13 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Sam Crean" <sg55443@gmail.com> - 2016-03-14 11:29 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") David Wade <dave.g4ugm@gmail.com> - 2016-03-14 08:51 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-13 22:00 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-14 00:20 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") David Wade <dave.g4ugm@gmail.com> - 2016-03-14 08:54 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-14 07:12 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:31 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 23:50 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:29 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Alfred Falk <falk@arc.ab.ca> - 2016-03-14 20:13 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-15 17:30 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-15 18:36 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-15 17:53 -0300
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-15 19:55 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Joy Beeson <jbeeson@invalid.net.invalid> - 2016-03-15 22:10 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "Charles Richmond" <numerist@aquaporin4.com> - 2016-03-15 22:58 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-15 21:51 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 16:33 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Stan Barr <plan.b@bluesomatic.org> - 2016-03-16 08:21 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 19:29 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-16 08:57 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-16 11:15 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-16 07:14 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-16 17:22 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "Joe Morris" <j.c.morris@verizon.net> - 2016-03-16 20:05 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-17 08:02 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-16 06:51 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-16 02:18 -0300
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 16:34 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-16 13:05 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-16 06:51 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 16:16 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-13 23:00 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Stephen Sprunk <stephen@sprunk.org> - 2016-03-13 19:52 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 13:43 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Stephen Sprunk <stephen@sprunk.org> - 2016-03-14 14:15 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-15 05:58 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-15 10:03 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-15 13:23 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-15 13:44 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-15 08:12 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 09:36 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-15 10:52 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-15 13:27 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-15 13:43 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:27 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-14 19:52 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-15 00:37 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-15 13:14 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-14 12:53 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-14 16:23 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-14 17:17 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-14 20:03 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-14 19:31 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-14 22:15 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-15 09:43 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-15 16:11 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 14:56 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-15 17:18 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 15:49 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 16:07 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-16 09:44 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:22 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-15 18:12 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-16 11:52 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-16 11:42 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Sam Crean" <sg55443@gmail.com> - 2016-03-15 08:37 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-14 18:08 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-15 01:18 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-14 21:53 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:16 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-15 22:23 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 16:25 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-16 13:08 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-16 14:36 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Andrew Swallow <am.swallow@btinternet.com> - 2016-03-16 14:40 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Andrew Swallow <am.swallow@btinternet.com> - 2016-03-16 14:36 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-16 14:40 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-17 07:22 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-16 15:35 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") pechter@cobalt.pechter.dyndns.org (William Pechter) - 2016-03-16 21:04 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "hanja" <hanja228@gmail.com> - 2016-03-17 08:56 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-16 17:09 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "hanja" <hanja228@gmail.com> - 2016-03-17 11:57 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-17 07:18 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Jim Bank" <jb410@gmail.com> - 2016-03-16 13:25 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-15 23:32 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 03:53 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-16 02:33 -0300
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 16:16 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-17 03:31 -0300
                Re: You count as an old-timer if (was Re: Origin of the phrase  "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-17 07:28 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-16 13:02 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-17 07:15 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-17 13:17 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-17 16:08 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-18 12:45 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-18 08:33 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reisrad <first@last.name.invalid> - 2016-03-14 23:18 +0100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-15 16:23 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-15 17:39 -0500
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 11:44 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "J. Clarke" <j.clarke.873638@gmail.com> - 2016-03-14 19:55 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:35 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 18:30 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-16 12:14 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-16 11:24 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-16 12:08 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-16 10:46 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-16 20:36 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-16 19:16 -0700
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-11 16:37 -0800
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-12 18:59 -0800
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-13 12:10 +0000
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 11:49 -0700
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-14 20:15 +0000
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 21:35 +0100
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-11 13:43 -0600
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Walter Banks <walter@bytecraft.com> - 2016-03-12 11:30 -0500
  Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-11 12:04 -0800
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-11 22:05 +0000
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-12 13:34 +0000
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Huge <Huge@nowhere.much.invalid> - 2016-03-12 18:07 +0000
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-13 14:12 +0000
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-14 19:47 +0000
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-15 13:43 +0000
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-15 19:00 +0000
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-16 13:02 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-17 07:13 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-17 13:17 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-17 17:54 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-18 12:45 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-19 09:09 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-18 23:47 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-19 02:03 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-19 13:23 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-22 07:19 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-22 13:40 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-18 08:37 +1100
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-17 17:55 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-18 12:45 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-18 23:48 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-19 13:23 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-22 07:19 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-22 13:40 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-26 07:31 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-26 13:24 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-04-15 08:33 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-04-15 12:18 +0000
  Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") usenet@only.tnx (Questor) - 2016-03-14 00:25 +0000
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-13 18:00 -0700
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-15 17:10 -0500
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Walter Banks <walter@bytecraft.com> - 2016-03-14 13:30 -0400
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 18:57 +0100
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-14 18:03 +0000
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-14 18:54 +0000
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-14 13:09 -0700
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-14 16:01 -0500
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 21:23 +0100
            Re: You count as an old-timer if Lawrence Statton NK1G <lawrence@senguio.mx> - 2016-03-14 19:05 -0600
              Re: You count as an old-timer if Morten Reistad <first@last.name.invalid> - 2016-03-15 10:07 +0100
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:39 -0700
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Walter Banks <walter@bytecraft.com> - 2016-03-15 19:57 -0400
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 03:53 +0000
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Walter Bushell <proto@panix.com> - 2016-03-21 20:28 -0400
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-22 01:41 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Martin <bob.martin@excite.com> - 2016-03-22 07:26 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Osmium" <r124c4u102@comcast.net> - 2016-03-22 07:18 -0600
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") tracymnelson@gmail.com - 2016-03-22 09:39 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <elson@pico-systems.com> - 2016-03-22 23:12 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Huge <Huge@nowhere.much.invalid> - 2016-03-23 11:19 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-23 05:00 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-23 12:09 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") tracymnelson@gmail.com - 2016-03-23 07:20 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-23 13:57 -0500
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Ibmekon <Ibmekon> - 2016-03-23 20:07 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Walter Bushell <proto@panix.com> - 2016-04-11 17:03 -0400
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Charles Richmond" <numerist@aquaporin4.com> - 2016-03-14 16:59 -0500
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Jon Elson <jmelson@wustl.edu> - 2016-03-14 17:57 -0500
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-14 18:53 +0000
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-14 12:49 -0700
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-14 19:55 -0400
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-15 07:13 -0700
            Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-15 08:12 -0700
              Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-15 12:11 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-15 17:30 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-15 14:44 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-15 19:36 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-15 17:25 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Peter Flass <peter_flass@yahoo.com> - 2016-03-15 18:12 -0700
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-16 08:01 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-15 23:17 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 03:53 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-16 11:17 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 16:16 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-16 14:34 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-16 13:01 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-16 11:26 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-16 16:03 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Dan Espen <despen@verizon.net> - 2016-03-16 14:28 -0400
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-16 19:00 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Bob Eager <news0006@eager.cx> - 2016-03-16 21:18 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-16 20:49 +0000
                Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") hancock4@bbs.cpcn.com - 2016-03-15 17:42 -0700
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-14 21:40 +0100
  Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Stephen Sprunk <stephen@sprunk.org> - 2016-03-16 21:09 -0500
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Morten Reistad <first@last.name.invalid> - 2016-03-17 08:04 +0100
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") jmfbahciv <See.above@aol.com> - 2016-03-17 13:17 +0000
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-18 08:40 +1100
    Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-17 14:28 -0700
      Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") mausg@mail.com - 2016-03-18 12:43 +0000
        Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") Quadibloc <jsavard@ecn.ab.ca> - 2016-03-18 10:23 -0700
          Re: You count as an old-timer if (was Re: Origin of the phrase "XYZZY") scott@slp53.sl.home (Scott Lurndal) - 2016-03-18 18:51 +0000
      Re: You count as an old-timer if Lawrence Statton NK1G <lawrence@senguio.mx> - 2016-03-18 14:28 -0600

csiph-web