Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.misc > #66117
| From | cross@spitfire.i.gajendra.net (Dan Cross) |
|---|---|
| Newsgroups | alt.folklore.computers, comp.os.linux.misc |
| Subject | Re: The joy of FORTRAN |
| Followup-To | alt.folklore.computers |
| Date | 2025-03-06 15:28 +0000 |
| Organization | PANIX Public Access Internet and UNIX, NYC |
| Message-ID | <vqceue$g9g$2@reader1.panix.com> (permalink) |
| References | <59CJO.19674$MoU3.15170@fx36.iad> <vqb267$lig$1@reader1.panix.com> <m2sohjF3sciU1@mid.individual.net> <vqceia$g9g$1@reader1.panix.com> |
Cross-posted to 2 groups.
Followups directed to: alt.folklore.computers
[Note: Followup-To: set to remove comp.os.linux.misc.
The discussion doesn't feel particularly relevant there.]
In article <vqceia$g9g$1@reader1.panix.com>,
Dan Cross <cross@spitfire.i.gajendra.net> wrote:
>In article <m2sohjF3sciU1@mid.individual.net>,
>rbowman <bowman@montana.com> wrote:
>>On Thu, 6 Mar 2025 02:44:23 -0000 (UTC), Dan Cross wrote:
>>
>>> At best, he reminds me of Herb Schildt.
>>
>>There's a name I haven't heard in a long time, he of 'void main(void)'
>>fame.
>
>That's the one. Generations of programmers led astray by that
>guy's books.
>
>>https://www.seebs.net/c/c_tcn4e.html
>>
>>"C: The Complete Reference is a popular programming book, marred only by
>>the fact that it is largely tripe. Herbert Schildt has a knack for clear,
>>readable text, describing a language subtly but quite definitely different
>>from C."
>
>That describes Martin's books to a T, I think. He writes very
>well, but what he writes, maybe not so much.
>
>Since the topic of their prime number generator program came up,
>I'll append my version here. Caveat that I'm not at all a Java
>programmer (let us give things to zog for small blessings), I
>think it's better than ether version presented in the Martin and
>Ousterhout debate, though I'm sure it could be further improved.
>
>This version tends closer to Knuth (and Dijkstra, where Knuth
>got it) than either of the two in the debate at
>https://github.com/johnousterhout/aposd-vs-clean-code
Oh gee; a bunch of tab literals snuck in there, which messed up
the formatting when posted. :-( With my apologies, here's a
fixed-up version.
- Dan C.
--->BEGIN Primes.java<---
package literatePrimes;
public class Primes {
// The algorithm used here comes from Dijkstra via Knuth. The basic
// idea is to special case 2, as the first (and only even) prime
// number, and then step through the odd integers, testing each as
// a candidate for primality. A number is prime iff it is not
// evenly divisible by any smaller prime.
//
// To understand how it works, observe that for any composite
// number j, the smallest prime factor of j will be less than or
// equal to sqrt(j). Hence, when testing a candidate for primality,
// we need not consider whether primes larger than the candidate's
// square root evenly divide the candidate. As the number of
// generated primes grows, the number of primes smaller than the
// square root grows much more slowly, cutting down on the search
// space and yielding a considerable performance benefit.
//
// When iterating, we are only concerned about the odd primes,
// so we only need to consider odd candidates starting from 3. By
// definition such candidates are not divisible by 2 and so the
// problem of determining primality is reduced to determining whether
// a is candidate odd and divisible by some other prime less than or
// equal to the square root of the candidate.
//
// As a further optimization, we avoid division by maintaining an
// auxilliary array of multiples of primes; that is, a table,
// `primeMultiples` of multiples of primes p_n. By maintaining the
// invariant that, for a given candidate j and prime p_n,
// primeMultiples[n] < j + 2*p_n, we can quickly test j for
// divisibility by p_n: if primeMultiples[n] < j, then clearly the
// invariant holds if we add 2*p_n to primeMultiples[n]. However,
// if primeMultiples[n] >= j + 2*p_n, then p_n is a factor of j if
// and only if primeMultiples[n] = j.
//
// Note that the factor of 2 in 2*p_n ensures that `primeMultiples[n]`
// always remains odd, for n > 0: 2*odd is even, and odd+even is odd.
//
// To avoid the performance impact of computing square roots, we keep
// track of the square of the prime that's square root is greater
// than the square root of the current candidate, and we use this to
// define an upper bound on multiples table entries that we must
// use to test a candidate for divisibility. When we have increased
// the candidate value such that it becomes equal to this tracked
// square value, we increase the bound by 1, reset the tracked square
// to that of the prime now indexed by the new upper bound, and add
// an entry to the primeMultiples table. It is safe to refer to the
// next such prime because we know from "Bertrand's Postulate" that,
// for a given prime p_n, the next prime p_{n+1} < 2*p_n, and
// 2*p_n < p_n^2 for p_nn > 2, so such a prime must already have been
// generated. Therefore, we simply add the next prime's square to the
// table as the first multiple of p_{n+1} and set `square` to that
// same value.
//
// Readers who want a deeper explanation may refer to:
// Knuth, Donald E. 1982. Literate Programming. _The Computer
// Journal_ 27, 2 (1984), 97-111.
// http://www.literateprogramming.com/knuthweb.pdf
private int[] primeMultiples;
private int[] primes;
private int nPrimes;
private int multiplesUpperBound;
private int nextCandidate;
private int square;
// Resets generator state and fills the `primes` array in
// ascending order. Note that, as a special case, `reset`
// returns the first prime number (2), so that we do not
// have to consider even numbers later. This simplifies
// the `next` method, since it only needs to consider odd
// numbers, and eliminating a conditional probably confers
// a slight performance advantage.
private void fill(int[] primes) {
primes[0] = reset(primes);
for (int i = 1; i < primes.length; i++) {
primes[i] = next();
}
}
// Resets the generator state and returns 2: the first, and
// only even, prime number.
//
// The resulting state is set so that the first subsequent
// invocation of `next` will return the first odd prime, 3.
// Note that a user must call `reset` before the first
// invocation of `next`.
private int reset(int[] primes) {
nextCandidate = 3;
this.primes = primes;
multiplesUpperBound = 1;
nPrimes = 1;
primeMultiples = new int[multiplesUpperBound + 1 + primes.length / 2];
square = 9;
primeMultiples[multiplesUpperBound] = square;
return 2;
}
// Computes, stores, and returns the next odd prime.
// The first time this is called, it will return 3,
// then 5, 7, 11, and so on, up to the defined maximum
// number of primes. Attempts to invoke `next` beyond
// the maximum will generate exceptions, as they try
// to index beyond the end of the `primes` array.
//
// `reset` must be called before the first invocation
// of `next`.
private int next() {
candidates: for (;;) {
int candidate = nextCandidate;
nextCandidate += 2;
if (candidate == square) {
multiplesUpperBound++;
square = primes[multiplesUpperBound] * primes[multiplesUpperBound];
primeMultiples[multiplesUpperBound] = square;
}
for (int i = 1; i < multiplesUpperBound; i++) {
while (primeMultiples[i] < candidate) {
primeMultiples[i] += 2*primes[i];
}
if (primeMultiples[i] == candidate) {
continue candidates;
}
}
primes[nPrimes] = candidate;
nPrimes++;
return candidate;
}
}
/**
* Returns an array of integers holding the first _n_ prime
* numbers, in ascending order. Returns null if n < 1.
*
* @param n
* The number of primes to return.
*/
public static int[] getFirst(int n) {
if (n < 1)
return null;
var primes = new int[n];
var generator = new Primes();
generator.fill(primes);
return primes;
}
}
--->END Primes.java<---
Back to comp.os.linux.misc | Previous | Next | Find similar
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:41 +0100
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-25 00:47 -0400
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2025-03-25 06:01 +0000
Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-25 07:54 -0400
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 John Ames <commodorejohn@gmail.com> - 2025-03-24 07:54 -0700
Re: The joy of FORTRAN c186282 <c186282@nnada.net> - 2025-03-25 01:49 -0400
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2025-03-25 11:15 +0000
Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2025-03-25 08:19 -0700
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
(Thread has 636 articles, showing 500 — browse group in flat view)
csiph-web