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


Groups > comp.os.linux.misc > #66091

Re: The joy of FORTRAN

From Richard Kettlewell <invalid@invalid.invalid>
Newsgroups alt.folklore.computers, comp.os.linux.misc
Subject Re: The joy of FORTRAN
Date 2025-03-05 08:46 +0000
Organization terraraq NNTP server
Message-ID <wwveczb7tll.fsf@LkoBDZeT.terraraq.uk> (permalink)
References <59CJO.19674$MoU3.15170@fx36.iad> <j6KwP.62410$OrR5.58268@fx18.iad> <tcmcnTfrnOhGnFn6nZ2dnZfqn_GdnZ2d@giganews.com> <vB5xP.126521$eNx6.22176@fx14.iad> <vq2scj$144$1@reader1.panix.com>

Cross-posted to 2 groups.

Show all headers | View raw


cross@spitfire.i.gajendra.net (Dan Cross) writes:
> John Ousterhout recently published the contents of a written
> "debate" he had with Robert C Martin that went into this at some
> length.  With the caveat that I think Martin is a charlatan,
> folks here might find it interesting and relevant.
>
> https://github.com/johnousterhout/aposd-vs-clean-code/blob/main/README.md

Most of the discussion focusses on the prime generators. A few thoughts:

- The disintegrated ‘Clean Code’ version is basically using function
  names as comments, and some of them not much better than the “i++; //
  add one to i” style rightly decried somewhere else in this
  thread. They certainly don’t shed any light on how the algorithm
  works.

- In contrast the single-method version has _no comments at all_.
  Even a handful of comments explaining the purpose of each variable
  would be a big step forward, although really it wants a higher-level
  description of how this algorithm achieves its goals.

Both should be rejected.

As it happens some of the code I work with is responsible for finding
primes (or usually: two or three primes in a specific relationship to
one another), although rather larger than the ones here and using a
completely different algorithm. The code is somewhat decomposed, but not
to the extent of the ‘clean code’ version - iterating over candidates of
the right shape is separated from primality testing, etc.

While most of it was originally written by someone else, evolving
compliance targets and some associated code quality uplift meant it’s
had a lot of work done on it, and the first step was comments explaining
not just what the algorithm was but how each step contributed to the end
goals.

Incidentally, in C, when dealing with large integers, each arithmetic
operations is a function call; “Y=X+((R-X)%(2*r1*r2))” gets a lot
wordier when all the variables can be hundreds or thousands of bits
long. At that point it’s well worth comments that show how the result
builds up in more mathematical language. It’s not quite “i++; // add one
to i” but it isn’t actually that far off.

-- 
https://www.greenend.org.uk/rjk/

Back to comp.os.linux.misc | Previous | Next | Find similar


Thread

Re: The joy of FORTRAN vjp2.at@at.BioStrategist.dot.dot.com - 2025-02-25 19:33 +0000
  Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-25 20:26 +0000
    Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-25 13:43 -0700
      Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-25 13:03 -0800
        Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-25 21:06 +0000
          Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-25 13:22 -0800
            Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-25 21:40 +0000
              Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-25 15:47 -0700
            Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-25 15:47 -0700
              Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-25 23:02 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-25 15:19 -0800
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-25 23:48 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-25 15:57 -0800
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-26 19:51 -0500
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 01:01 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-27 19:37 -0500
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-27 08:03 -0800
                Re: the end of 18 bits, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-27 17:44 +0000
                Re: the end of 18 bits, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-27 18:54 +0000
                Re: the end of 18 bits, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-28 03:00 +0000
                Re: the end of 18 bits, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-28 14:32 +0000
                Re: the end of 18 bits, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-28 17:51 +0000
                Re: the end of 18 bits, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 21:32 +0000
                Re: the end of 18 bits, The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-28 07:30 -0500
                Re: the end of 18 bits, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 20:03 -0500
                Re: The joy of FORTRAN Alfred Falk <aefalk@telus.net> - 2025-03-07 04:42 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-07 13:06 +0000
                Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2025-03-07 06:46 -1000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-07 19:23 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-08 03:02 +0000
                Re: The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2025-03-08 04:12 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-08 05:09 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-08 00:21 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-08 08:04 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-08 14:42 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-08 20:37 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-08 22:13 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 00:20 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 07:07 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 04:55 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 19:40 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 22:50 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 06:18 +0000
                Re: The joy of FORTRAN snipeco.2@gmail.com (Sn!pe) - 2025-03-10 15:37 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 20:50 +0000
                Re: The joy of FORTRAN snipeco.2@gmail.com (Sn!pe) - 2025-03-10 21:14 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 22:54 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:49 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:43 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:03 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-11 05:22 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-11 10:47 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-11 20:36 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 22:50 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 04:30 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-13 02:22 -0400
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-03-09 21:56 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-10 00:18 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 05:02 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-10 17:26 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 21:19 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:36 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-12 09:00 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-12 17:30 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-12 17:23 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-12 18:37 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-12 19:42 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-12 20:31 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 23:16 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-12 19:56 +0000
                Re: The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2025-03-10 12:23 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 05:09 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-10 11:10 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-10 17:26 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 21:02 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-11 08:02 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-11 09:02 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-11 09:10 +0000
                Re: The joy of FORTRAN David LaRue <huey.dll@tampabay.rr.com> - 2025-03-11 09:44 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-11 18:27 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-11 20:07 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-11 20:38 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-11 22:51 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:50 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 12:02 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-12 14:33 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 20:29 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 21:40 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-13 13:07 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 00:21 -0400
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 20:26 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:44 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 12:34 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 04:47 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 12:18 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-12 19:56 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 20:32 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 01:24 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 23:53 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 04:37 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-13 14:36 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 16:51 +0000
                Re: The joy of FORTRAN Don_from_AZ <djatechNOSPAM@comcast.net.invalid> - 2025-03-13 19:59 -0700
                Re: The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2025-03-14 03:13 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 02:27 -0400
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 03:30 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 02:33 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 02:24 -0400
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-14 17:37 -0700
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-15 17:19 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-15 19:38 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-15 19:42 -0400
                Re: The joy of FORTRAN Don_from_AZ <djatechNOSPAM@comcast.net.invalid> - 2025-03-10 08:51 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 21:13 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:47 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:04 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 12:29 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-12 17:55 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-09 16:51 +0000
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2025-03-09 18:32 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 19:14 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 22:01 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 05:52 +0000
                Re: The joy of FORTRAN Dan Espen <dan1espen@gmail.com> - 2025-03-08 15:55 -0500
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-08 23:05 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 06:57 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 04:43 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 19:00 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 21:27 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-10 04:07 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 06:32 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-09 10:29 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 20:09 -0400
                Re: The joy of FORTRAN snipeco.2@gmail.com (Sn!pe) - 2025-03-09 14:30 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 20:30 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 05:26 +0000
                Re: The joy of FORTRAN snipeco.2@gmail.com (Sn!pe) - 2025-03-10 15:56 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:06 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-09 16:51 +0000
                Re: The joy of FORTRAN Thomas Prufer <prufer.public@mnet-online.de.invalid> - 2025-03-24 12:07 +0100
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-08 22:57 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-09 06:35 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 04:21 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-09 16:51 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 20:57 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 05:18 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-10 11:06 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 21:32 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-10 11:02 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-10 17:26 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-10 18:11 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-10 23:59 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 05:40 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 04:00 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 12:18 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-12 19:56 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-12 20:43 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 23:35 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-13 05:31 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-13 03:17 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 16:26 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 00:47 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-14 10:46 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 07:13 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-14 14:03 +0000
                Re: The joy of FORTRAN Robert Riches <spamtrap42@jacob21819.net> - 2025-03-13 04:19 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-13 05:31 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-13 03:09 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 16:37 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-13 18:46 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-13 11:56 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 22:05 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 02:21 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 01:51 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-14 18:07 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-15 06:49 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-15 09:06 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-15 19:34 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-15 23:52 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-16 04:32 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-16 06:35 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-16 04:06 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-16 18:56 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-16 18:19 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-17 03:58 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-17 04:14 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-17 00:59 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-17 21:00 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-18 04:25 -0400
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-17 00:45 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-16 09:04 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-16 05:29 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-16 20:06 +0000
                Re: The joy of FORTRAN Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-03-16 21:42 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-16 23:49 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-16 23:35 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-17 05:15 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-17 01:39 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-17 21:36 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-18 04:35 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 08:00 -0700
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-17 18:05 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 12:05 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-17 21:42 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 14:57 -0700
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-18 04:49 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-18 10:54 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-18 08:12 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-18 16:58 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-20 05:36 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-20 12:21 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-20 08:03 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-20 18:44 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-20 19:41 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-20 22:07 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-18 04:54 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-18 08:24 -0700
                Re: The joy of FORTRAN Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-03-21 22:22 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-22 00:26 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 00:26 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2025-03-22 12:56 +0100
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-23 04:20 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-16 18:19 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-16 23:15 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 07:49 -0700
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 07:45 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-17 21:16 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-17 15:06 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-18 04:31 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-18 08:28 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-14 18:25 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-13 18:46 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-14 02:19 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-14 08:05 -0700
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-14 16:20 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-08 22:30 -0500
                Re: The joy of FORTRAN Robert Riches <spamtrap42@jacob21819.net> - 2025-03-09 03:49 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 01:10 -0500
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-09 16:51 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-09 20:42 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-10 06:27 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-11 05:31 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-11 18:27 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-12 22:17 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-13 04:56 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-13 02:25 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-26 01:35 +0000
                Re: The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-02-26 14:10 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-26 19:03 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-26 19:43 -0500
            Re: The joy of FORTRAN Rich <rich@example.invalid> - 2025-02-26 02:13 +0000
              Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-26 08:37 -0800
              Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-26 15:17 -0700
                Re: where the PDP-8 came from, not The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-27 01:39 +0000
                Re: where the PDP-8 came from, not The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 04:42 +0000
                Re: where the PDP-8 came from, not The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-27 07:43 +0000
                Re: where the PDP-8 came from, not The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-27 19:41 -0500
                Re: where the PDP-8 came from, not The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-28 21:49 -0500
            Re: The joy of old small computers, which sort of ran FORTRAN John Levine <johnl@taugh.com> - 2025-02-26 03:23 +0000
              Re: The joy of old small computers, which sort of ran FORTRAN c186282 <c186282@nnada.net> - 2025-02-26 00:41 -0500
          Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-25 15:47 -0700
            Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-25 22:56 +0000
              Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-26 19:22 -0500
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-27 00:56 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 01:00 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-27 07:43 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 08:00 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-27 18:39 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-27 19:29 -0500
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 01:39 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-28 07:34 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 07:26 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-02-28 19:22 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-28 19:58 +0000
                Re: The joy of FORTRAN moi <findlaybill@blueyonder.co.uk> - 2025-03-01 00:02 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-28 14:19 +0000
                Re: evolution of bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-28 18:11 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-28 20:57 +0000
                Re: evolution of bytes, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-28 17:51 -0700
                Re: evolution of bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-01 01:48 +0000
                Re: evolution of bytes, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-01 14:47 +0000
                Re: evolution of bytes, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-01 11:43 -0700
                Re: evolution of bytes, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-01 20:56 +0000
                Re: evolution of bytes, The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-03-01 21:28 +0000
                Re: evolution of bytes, The joy of FORTRAN Andy Walker <anw@cuboid.co.uk> - 2025-03-01 15:21 +0000
                Re: evolution of bytes, The joy of FORTRAN Al Kossow <aek@bitsavers.org> - 2025-03-02 02:50 -0800
                Re: evolution of bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-02 20:34 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-02 21:38 +0000
                Re: evolution of bytes, The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2025-03-03 00:25 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-03 01:38 +0000
                Re: evolution of bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-03 03:01 +0000
                Re: evolution of bytes, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 06:54 -0700
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-03 23:38 +0000
                Re: evolution of bytes, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 23:07 -0500
                Re: evolution of bytes, The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2025-03-04 12:02 +0000
                Re: evolution of bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-04 01:06 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-02 21:36 +0000
                Re: evolution of bytes, The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-03-02 14:58 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-02 21:39 +0000
                Re: evolution of bytes, The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-03-03 01:50 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-03 02:07 +0000
                Re: evolution of bytes, The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-03 03:04 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-03 03:05 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-03-04 23:39 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN Pancho <Pancho.Jones@protonmail.com> - 2025-03-05 00:38 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-05 03:00 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN Pancho <Pancho.Jones@protonmail.com> - 2025-03-05 23:49 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 00:49 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-06 05:11 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 05:58 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-06 14:43 +0000
                Re: evolution of arithmetic, was bytes, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-06 14:42 +0000
                Re: evolution of bytes, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 06:54 -0700
                Re: evolution of bytes, The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 19:16 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-03 23:41 +0000
                Re: evolution of bytes, The joy of FORTRAN Pancho <Pancho.Jones@protonmail.com> - 2025-03-04 00:16 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 03:01 +0000
                Re: evolution of bytes, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 17:36 -0700
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 02:59 +0000
                Re: evolution of bytes, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 23:11 -0500
                Re: evolution of bytes, The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 07:11 +0000
                Re: evolution of bytes, The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-04 19:22 +0000
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 20:39 +0000
                Re: evolution of bytes, The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-28 21:39 -0500
                Re: evolution of bytes, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-01 02:43 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-02-28 19:34 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 21:11 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-01 04:42 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-01 00:04 -0500
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-01 11:43 -0700
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-01 20:11 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 01:44 -0500
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-01 11:43 -0700
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 01:00 -0500
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-01 11:43 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-01 21:07 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-28 21:36 -0500
            Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-26 00:26 -0500
              Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-26 19:34 -0500
                Re: The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-02-28 13:41 +0000
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-28 13:59 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-28 14:30 +0000
                Re: The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-02-28 17:36 +0000
                Re: The joy of FORTRAN Andreas Eder <a_eder_muc@web.de> - 2025-02-28 19:56 +0100
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-28 20:54 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-28 13:20 -0800
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-28 21:52 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-28 14:07 -0800
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-28 22:29 +0000
                Re: The joy of FORTRAN Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-03-01 09:13 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-01 20:27 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-05 11:11 -0800
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 21:20 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-01 20:29 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-01 21:05 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 00:08 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-02 08:19 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-02 23:12 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-03 02:23 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 04:48 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-03 17:33 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 19:53 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 22:43 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 05:13 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 01:06 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 07:53 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 12:58 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 19:46 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 22:36 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 06:57 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 03:04 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 09:18 +0000
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-28 22:16 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-28 21:44 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-02-28 19:23 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 20:26 -0500
          Re: The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-26 00:20 +0000
            Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-26 02:28 +0000
              CISC did not die in 1990 (was: Re: The joy of FORTRAN) vallor <vallor@cultnix.org> - 2025-02-26 14:01 +0000
            Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2025-02-25 16:59 -1000
              Re: The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-26 03:31 +0000
                Re: The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-02-26 14:24 +0000
              Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2025-02-25 17:48 -1000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-26 04:18 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-26 15:17 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-26 23:43 +0000
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2025-02-27 21:11 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-28 02:46 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-28 12:42 -0700
                Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2025-02-28 13:08 -1000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-01 02:46 +0000
                Re: The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-03-01 18:41 -0500
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-26 00:58 -0500
            Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-26 15:17 -0700
              Re: byte me, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-27 01:44 +0000
                Re: byte me, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 04:47 +0000
                Re: byte me, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-27 01:19 -0500
                Re: byte me, The joy of FORTRAN Rich Alderson <news@alderson.users.panix.com> - 2025-02-27 19:33 -0500
                Re: byte me, The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-28 01:02 +0000
                Re: byte me, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-02-28 03:05 +0000
                Re: byte me, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 01:15 -0500
                Re: byte me, The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-28 12:42 -0700
              Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-27 07:43 +0000
                Univac 1100/2200 Byte Size (Re: The joy of FORTRAN) Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-27 19:27 +0000
                Re: Univac 1100/2200 Byte Size (Re: The joy of FORTRAN) David W Schroth <davidschroth@harrietmanor.com> - 2025-02-28 19:43 -0600
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-28 12:42 -0700
        Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-26 00:13 -0500
          Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-02-26 10:04 -0800
            Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-26 18:20 +0000
        Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 01:26 -0500
      Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-25 21:18 +0000
        Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-25 15:47 -0700
          Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-26 00:17 +0000
          Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-26 00:17 +0000
      Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-25 22:36 +0000
        Re: The joy of FORTRAN Louis Krupp <lkrupp@invalid.pssw.com.invalid> - 2025-02-26 03:12 -0700
          Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-26 19:47 +0000
            Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-02-26 19:52 +0000
          Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-27 01:54 -0500
  Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-25 19:16 -0500
    Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-02-26 15:17 -0700
      Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-27 02:14 +0000
        Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-02-27 11:43 +0000
          Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-27 21:52 +0000
          Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-02-28 02:34 +0000
            Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-02-28 09:47 +0000
            Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-02-28 12:39 +0000
              Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-02-28 20:24 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-01 09:25 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 00:17 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-02 07:53 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 03:03 -0500
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-02 23:12 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 23:59 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 05:28 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-02 09:39 +0000
                Re: The joy of FORTRAN Richard Kettlewell <invalid@invalid.invalid> - 2025-03-02 13:41 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-03 15:11 +0000
                Re: The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2025-03-03 10:05 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-03 15:24 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 19:19 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 13:15 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 03:08 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-04 11:44 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 20:40 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-04 14:02 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 23:13 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 21:28 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-04 23:28 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 01:30 +0000
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2025-03-05 18:19 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-05 18:23 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-05 02:40 +0000
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-03-05 10:19 +0000
                Re: The joy of FORTRAN Dan Espen <dan1espen@gmail.com> - 2025-03-03 22:41 -0500
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 02:24 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 09:28 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:44 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 20:38 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 20:42 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:33 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-04 11:44 -0700
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-03-04 22:28 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 20:42 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:35 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-03 20:17 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 13:49 -0700
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-03 21:31 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 23:02 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 06:25 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 02:30 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 08:42 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 13:12 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 20:26 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:33 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:30 +0000
                Re: The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2025-03-04 12:25 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 14:17 +0000
                Re: The joy of FORTRAN Dan Espen <dan1espen@gmail.com> - 2025-03-04 09:42 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 01:23 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-05 03:16 +0000
                Re: The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2025-03-04 14:53 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 01:26 +0000
                Re: The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2025-03-05 17:26 +0000
                Re: The joy of FORTRAN snipeco.2@gmail.com (Sn!pe) - 2025-03-05 17:44 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 18:49 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 21:28 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:42 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:26 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:44 +0000
                Re: The joy of FORTRAN Ian <${send-direct-email-to-news1021-at-jusme-dot-com-if-you-must}@jusme.com> - 2025-03-04 18:20 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 01:29 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:15 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:46 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:13 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-03 21:05 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:14 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-04 12:25 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 14:15 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 23:16 +0000

(Thread has 628 articles, showing 500 — browse group in flat view)


csiph-web