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


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

Re: The joy of FORTRAN

From rbowman <bowman@montana.com>
Newsgroups alt.folklore.computers, comp.os.linux.misc
Subject Re: The joy of FORTRAN
Date 2025-03-01 04:35 +0000
Message-ID <m2fh54F3tr0U1@mid.individual.net> (permalink)
References (17 earlier) <1214951717.762291306.657281.peter_flass-yahoo.com@news.eternal-september.org> <m2a04pF90mqU2@mid.individual.net> <vppj5n$33b82$4@dont-email.me> <m2clmbFl430U10@mid.individual.net> <1698682867.762482332.128555.peter_flass-yahoo.com@news.eternal-september.org>

Cross-posted to 2 groups.

Show all headers | View raw


On Fri, 28 Feb 2025 17:47:19 -0700, Peter Flass wrote:

> Imported one C program that was all macros. In hindsight it would have
> been better just to rewrite it.

The one I'm thinking of had gems like 

#define STRF_FN_DECL(obj) \
size_t strf_##obj (char *obuf, size_t olen, const char *fmt, \
		void *data, list_t *list) 
#define STRF_FN(obj) \
STRF_FN_DECL(obj) \
{ \
	static list_t llist;          \
	static struct obj##_struct o; \
                         \
	if (list == NULL || list->data == NULL) { \
		if ( data) { \
			memcpy(&o, data, sizeof(o)); \
		} else { \
			memset(&o, 0, sizeof(o)); \
		} \
		if ( list ) { \
			llist = *list; \
		} \
		llist.data = (void*)&o; \
		list = &llist;     \
	} \
  return (strfobj (list->data, list, obj##_map, obuf, olen, fmt)); \
} 


#define MAP(nm,s,fmt,fn,sm, sfn) { #s, sizeof (#s)-1, \
			offsetof (struct nm##_struct, s), fmt, fn, sm, 
sfn }


Between the stringizing and concatenation operators good luck finding a 
function that did stuff with foo. Using 4 characters was an extravagance; 
most of his code didn't exceed 3 characters for variable names.

Now the irony: he had been a TA at UM and students who had him said he was 
a stickler for well commented code. He personally never commented a line 
of code as far as I could tell.

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 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 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-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
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 23:18 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 23:00 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:18 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:38 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 20:59 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-05 01:28 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-05 02:49 +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 23:20 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-05 12:42 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 21:25 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 23:10 -0500
                Re: The joy of FORTRAN Richard Kettlewell <invalid@invalid.invalid> - 2025-03-04 08:44 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:41 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 23:19 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 13:43 -0500
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 22:06 -0500
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 07:06 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-04 03:14 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:38 +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:29 +0000
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-03-04 22:29 +0000
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-04 15:33 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 21:02 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-01 11:43 -0700
                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:12 +0000
                Re: The joy of FORTRAN Bob Eager <news0009@eager.cx> - 2025-03-01 21:26 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 01:59 -0500
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-02 09:42 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 22:44 -0500
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2025-03-03 06:54 -0700
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-03 15:21 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-03 15:20 +0000
                Re: comments, The joy of FORTRAN John Levine <johnl@taugh.com> - 2025-03-02 20:43 +0000
                Re: comments, The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-02 21:12 +0000
                Re: comments, The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-02 21:46 +0000
                Re: comments, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-02 23:19 -0500
                Re: comments, The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-03 05:32 +0000
                Re: comments, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 01:16 -0500
                Re: comments, The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2025-03-03 15:15 +0000
                Re: comments, The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-03 17:33 +0000
                Re: comments, The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-03 22:58 -0500
                Re: comments, The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-04 07:38 +0000
                Re: comments, The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-04 09:35 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-02 23:12 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-03 00:16 +0000
                Re: The joy of FORTRAN antispam@fricas.org (Waldek Hebisch) - 2025-03-04 19:46 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-05 02:59 +0000
                Re: The joy of FORTRAN Richard Kettlewell <invalid@invalid.invalid> - 2025-03-05 08:46 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 21:30 +0000
                Re: The joy of FORTRAN Pancho <Pancho.Jones@protonmail.com> - 2025-03-05 23:42 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-06 02:44 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-06 05:01 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-06 15:21 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-06 15:28 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-06 16:55 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-06 19:14 +0000
                Re: The joy of FORTRAN cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-06 19:55 +0000
                Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-07 02:53 -0500
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2025-03-07 08:49 +0000

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


csiph-web