Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.misc > #80681
| From | cross@spitfire.i.gajendra.net (Dan Cross) |
|---|---|
| Newsgroups | comp.os.linux.misc, alt.folklore.computers |
| Subject | Re: Re: Naughty C♯ |
| Date | 2026-01-07 15:13 +0000 |
| Organization | PANIX Public Access Internet and UNIX, NYC |
| Message-ID | <10jlt75$iih$1@reader2.panix.com> (permalink) |
| References | <CtydnVqzjrtfd5P0nZ2dnZfqn_adnZ2d@giganews.com> <10jiufh$1an77$1@paganini.bofh.team> <ZN-dnY--SfIc4MD0nZ2dnZfqnPednZ2d@giganews.com> <10jlqu8$mvh2$3@dont-email.me> |
Cross-posted to 2 groups.
In article <10jlqu8$mvh2$3@dont-email.me>, Peter Flass <Peter@Iron-Spring.com> wrote: >On 1/6/26 14:24, c186282 wrote: >> On 1/6/26 07:16, Waldek Hebisch wrote: >>> In alt.folklore.computers c186282 <c186282@nnada.net> wrote: >>> <snip> >>>> Hmm ... look at all the GNU 'compilers' - >>>> FORTRAN, COBOL, Ada, 'D', M2, Rust,C++, >>>> G++, even Algol-68. None are 'compilers' >>>> per-se, but to-'C' TRANSLATORS. So, 'C', >>>> pretty much All Are One And One Is All. >>> >>> No. Compiler as first stage translate given language to a >>> common representation. This representatiton is different >>> than C. Ada and GNU Pascal have parametrized types, there >>> is nothing like that in C. C++ (and some other languages) >>> have exceptions, C do not have them. There are several >>> smaller things, for example Ada or Pascal modulo is different >>> that C/Fortran modulo. During optimization passes gcc >>> keeps such information, to allow better optimization and >>> error reporting. >>> >>> There were/are compilers that work by translating to C. But >>> this has limitations: generated code typically is worse because >>> language specific information is lost in translation. Error >>> reporting is worse because translator is not doing as many >>> analyzes as gcc do. For those reasons compilers in gcc >>> generate common representation which contains sum of features >>> of all supported languages and not C. >> >> You give it a file in whatever lang, it produces >> a file in 'C' and compiles that. So, I'll basically >> stick with my 'translator' def. And if 'C' does not >> 'natively support' something you can FAKE it with code, >> not really anything you CAN'T do with 'C'. >> >> By 'compiler' I mean "source in -> (agitating sounds) -> >> binary executable out. >> >> I think there are still a few FORTRAN compilers out >> there for Linux, maybe COBOL too. There's at least >> one forth IDE/compiler. Digital Mars makes 'C' and >> 'D' compilers. GCC is not the alpha and omega >> of software development. >> >>>> But it CAN be much more friendly and/or >>>> tuned to a particular area of interest >>>> or preferred programming style. >> > >Iron Spring PL/I compiles directly to binary. It can produce assembler >output, but only as a by-product of generating the object file. I have >occasionally thought of trying to make it another front-end for GCC. As >I understand it, GCC compiles to an intermediate language, not to C. GCC's frontends, like those of most modern compilers, generate an intermediate representation (that is, indeed, not C). That, in turn, is optimized and presented to a backend, that uses the IR to generate machine code for a target instruction set. In this way, any of the languages that the GCC front-end recognize can be targetted to any of the architectures its backend supports. Whether that machine code is in binary object code or textual assembly code hardly matters; the hard work of the compiler is in the transation from source to machine code. Separate assembly and link stages are hidden by the compiler driver program (e.g., the `gcc` program itself), but don't change the fact that, yes, Virginia, GCC is actually a compiler. These bizarre definitional assertions about what makes something a "compiler" or not seem to be mostly put forth by people who have never heard of the concept of "separate compilation" or "libraries", let alone touched the innards of a compiler. In particular, this idea that everything must be implemented in a single program or it's not a "true" compiler is rooted firmly in ignorance. - Dan C.
Back to comp.os.linux.misc | Previous | Next | Find similar | Unroll thread
Re: Recent history of vi Johnny Billquist <bqt@softjar.se> - 2025-11-27 20:10 +0100
Re: Recent history of vi scott@slp53.sl.home (Scott Lurndal) - 2025-11-27 20:19 +0000
Re: Recent history of vi Johnny Billquist <bqt@softjar.se> - 2025-12-03 13:44 +0100
Re: Recent history of vi Richard Kettlewell <invalid@invalid.invalid> - 2025-11-27 20:44 +0000
Re: Recent history of vi Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-11-28 07:54 -0500
Re: Recent history of vi Alexander Schreiber <als@usenet.thangorodrim.de> - 2025-11-28 22:10 +0100
Re: Recent history of vi David Goodwin <david+usenet@zx.net.nz> - 2025-11-29 13:13 +1300
Re: Recent history of vi Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-29 02:57 +0000
Re: Recent history of vi "Carlos E.R." <robin_listas@es.invalid> - 2025-11-29 13:35 +0100
Re: Recent history of vi Richard Kettlewell <invalid@invalid.invalid> - 2025-11-29 13:45 +0000
Re: Recent history of vi Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-11-29 15:06 +0000
Re: Recent history of vi The Natural Philosopher <tnp@invalid.invalid> - 2025-11-29 11:20 +0000
Re: Recent history of vi Peter Flass <Peter@Iron-Spring.com> - 2025-11-29 12:45 -0700
Re: Recent history of vi The Natural Philosopher <tnp@invalid.invalid> - 2025-11-30 10:37 +0000
Re: Recent history of vi Richard Kettlewell <invalid@invalid.invalid> - 2025-11-30 11:06 +0000
Re: Recent history of vi Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-30 16:20 +0000
Re: Recent history of vi Richard Kettlewell <invalid@invalid.invalid> - 2025-12-01 08:54 +0000
Re: Recent history of vi Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-13 08:22 +0000
Re: Recent history of vi Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-12-13 11:55 +0000
Re: Recent history of vi Richard Kettlewell <invalid@invalid.invalid> - 2025-12-13 14:44 +0000
Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-13 23:35 +0100
Re: Python rbowman <bowman@montana.com> - 2025-12-14 01:48 +0000
Re: Python drb@ihatespam.msu.edu (Dennis Boone) - 2025-12-14 20:00 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-14 20:43 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-15 02:40 -0500
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-15 18:48 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-15 21:43 +0000
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-15 18:45 +0000
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-15 18:44 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-15 22:17 +0000
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-15 23:55 +0000
Re: Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-19 22:57 +0100
Re: Python c186282 <c186282@nnada.net> - 2025-12-13 23:27 -0500
Re: Python Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-12-14 11:56 +0000
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-14 23:29 +0000
Re: Python mm0fmf <none@invalid.com> - 2025-12-15 12:57 +0000
Re: Python Alexander Schreiber <als@usenet.thangorodrim.de> - 2025-12-15 22:57 +0100
Re: Python c186282 <c186282@nnada.net> - 2025-12-15 22:31 -0500
Re: Python Greg Ewing <greg.ewing@canterbury.ac.nz> - 2025-12-16 17:51 +1300
Re: Python rbowman <bowman@montana.com> - 2025-12-16 08:32 +0000
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-16 21:45 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-17 01:54 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-17 03:11 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-17 19:17 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-17 22:10 -0500
Re: Python John Levine <johnl@taugh.com> - 2025-12-18 03:28 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-17 23:02 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-18 06:54 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-18 04:25 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-18 19:22 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-19 01:14 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-18 06:44 +0000
Re: Python Peter Flass <Peter@Iron-Spring.com> - 2025-12-18 07:40 -0700
Re: Python Richard Kettlewell <invalid@invalid.invalid> - 2025-12-18 18:00 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-18 18:28 +0000
Re: Python Peter Flass <Peter@Iron-Spring.com> - 2025-12-18 12:52 -0700
Re: Python rbowman <bowman@montana.com> - 2025-12-19 03:53 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-19 00:37 -0500
Re: Python "Michael F. Stemper" <michael.stemper@gmail.com> - 2026-03-04 10:32 -0600
Re: Python ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2026-03-04 20:01 +0000
Re: Python "Carlos E.R." <robin_listas@es.invalid> - 2026-03-04 21:29 +0100
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-03-04 20:37 +0000
Re: Python Peter Flass <Peter@Iron-Spring.com> - 2026-03-04 14:09 -0700
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-03-04 22:35 +0000
Re: Python Nuno Silva <nunojsilva@invalid.invalid> - 2026-03-04 23:10 +0000
Re: Python c186282 <c186282@nnada.net> - 2026-03-04 20:30 -0500
Re: Python Peter Flass <Peter@Iron-Spring.com> - 2026-03-04 20:13 -0700
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-03-05 03:49 +0000
Re: Python Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-03-05 17:42 +0000
Re: Python "Carlos E.R." <robin_listas@es.invalid> - 2026-03-05 20:02 +0100
Re: Python c186282 <c186282@nnada.net> - 2026-03-05 14:42 -0500
Re: Python Nuno Silva <nunojsilva@invalid.invalid> - 2026-03-06 00:12 +0000
Re: Python Bob Eager <news0009@eager.cx> - 2026-03-06 09:02 +0000
Re: Python Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-03-05 02:44 +0000
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-03-05 03:50 +0000
Re: Python Piergiorgio Sartor <piergiorgio.sartor.this.should.not.be.used@nexgo.REMOVETHIS.de> - 2026-03-04 22:14 +0100
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2026-03-04 22:20 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-19 00:29 -0500
Re: Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-20 12:38 +0100
Re: Python Dan Espen <dan1espen@gmail.com> - 2025-12-17 16:17 -0500
Re: Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-17 22:11 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-17 22:18 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-18 07:07 +0000
Re: Python Richard Kettlewell <invalid@invalid.invalid> - 2025-12-17 22:13 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-18 00:52 +0000
Re: Python Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-12-18 08:03 +0100
Re: Python rbowman <bowman@montana.com> - 2025-12-18 07:39 +0000
Re: Python scott@slp53.sl.home (Scott Lurndal) - 2025-12-18 15:43 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-18 18:38 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-19 00:56 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-19 08:18 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-19 03:30 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-19 19:38 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-20 04:01 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-21 04:08 +0000
Re: Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-27 22:36 +0100
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-18 09:55 +0000
Re: Python Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-12-18 11:19 +0100
Re: Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-18 12:36 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-14 23:36 -0500
Re: Python candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-12-19 13:30 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-19 19:50 +0000
Re: Python scott@slp53.sl.home (Scott Lurndal) - 2025-12-19 20:03 +0000
Re: Python Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-12-19 21:00 +0000
Re: Python c186282 <c186282@nnada.net> - 2025-12-20 04:16 -0500
Re: Python c186282 <c186282@nnada.net> - 2025-12-20 04:15 -0500
Re: Python rbowman <bowman@montana.com> - 2025-12-21 04:14 +0000
Re: Python Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-12-21 09:06 -0500
Re: Python drb@ihatespam.msu.edu (Dennis Boone) - 2025-12-21 18:31 +0000
Re: Python rbowman <bowman@montana.com> - 2025-12-21 21:00 +0000
Re: Python Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-12-22 07:29 +0100
Linux at work in the old days Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-12-22 07:20 -0500
Re: Linux at work in the old days rbowman <bowman@montana.com> - 2025-12-22 19:18 +0000
Re: Linux at work in the old days c186282 <c186282@nnada.net> - 2025-12-23 01:41 -0500
Re: Linux at work in the old days Peter Flass <Peter@Iron-Spring.com> - 2025-12-23 07:26 -0700
Re: Linux at work in the old days Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-23 20:21 +0000
Re: naughty Python John Levine <johnl@taugh.com> - 2025-12-22 21:26 +0000
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-23 00:49 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-23 01:55 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-23 11:21 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-23 06:34 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-23 12:38 +0000
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-23 20:28 +0000
Re: naughty Python Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2025-12-23 14:21 -0800
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-23 23:55 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-24 05:33 -0500
The power of languages (Re: naughty Python) Lars Poulsen <lars@beagle-ears.com> - 2025-12-24 15:49 +0000
Re: The power of languages (Re: naughty Python) Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-12-24 23:28 +0000
Re: The power of languages (Re: naughty Python) Thomas Prufer <prufer.public@mnet-online.de.invalid> - 2025-12-27 15:29 +0100
Re: The power of languages (Re: naughty Python) Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-27 21:21 +0000
Re: The power of languages (Re: naughty Python) rbowman <bowman@montana.com> - 2025-12-27 23:17 +0000
Re: The power of languages (Re: naughty Python) Lars Poulsen <lars@beagle-ears.com> - 2025-12-28 04:09 +0000
Re: The power of languages (Re: naughty Python) Bob Vloon <usenet@bananacorp.nl.invalid> - 2025-12-28 18:00 +0000
Re: naughty Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-28 22:22 +0100
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-28 21:06 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-29 04:04 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-29 01:07 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-29 06:38 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-29 02:31 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-29 17:09 +0000
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-29 13:35 +0000
Re: naughty Python Peter Flass <Peter@Iron-Spring.com> - 2025-12-29 07:33 -0700
Re: naughty Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-29 21:59 +0000
Re: naughty Python John Ames <commodorejohn@gmail.com> - 2025-12-29 15:40 -0800
Re: naughty Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-30 01:30 +0000
Re: naughty Python John Ames <commodorejohn@gmail.com> - 2025-12-30 08:57 -0800
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-30 12:51 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-30 19:00 +0000
Re: naughty Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-30 19:06 +0000
Re: naughty Python "Carlos E.R." <robin_listas@es.invalid> - 2025-12-30 09:38 +0100
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-30 11:11 +0000
Re: naughty Python Peter Flass <Peter@Iron-Spring.com> - 2025-12-30 07:38 -0700
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-30 15:04 +0000
Innovation (was Re: naughty Python) Lars Poulsen <lars@beagle-ears.com> - 2025-12-30 21:40 +0000
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-30 22:02 +0000
Re: naughty Python Peter Flass <Peter@Iron-Spring.com> - 2025-12-29 19:23 -0700
Re: naughty Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-30 03:53 +0000
OT: incompetence of companies (was: Re: naughty Python) Nuno Silva <nunojsilva@invalid.invalid> - 2025-12-30 10:03 +0000
Re: OT: incompetence of companies The Natural Philosopher <tnp@invalid.invalid> - 2025-12-30 11:12 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-30 03:14 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-30 11:18 +0000
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-30 21:49 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-30 19:47 -0500
Re: naughty Python Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-12-31 01:01 +0000
Re: naughty Python Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-31 03:07 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-30 23:45 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-31 07:12 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-30 23:11 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-31 07:57 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-31 09:13 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2025-12-31 19:13 +0000
Re: naughty Python Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-12-31 18:55 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-31 14:21 -0500
Re: naughty Python Lars Poulsen <lars@beagle-ears.com> - 2025-12-31 22:34 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-31 22:32 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2025-12-31 22:35 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2025-12-31 22:07 -0500
Re: naughty Python The Natural Philosopher <tnp@invalid.invalid> - 2026-01-01 12:49 +0000
Re: naughty Python Peter Flass <Peter@Iron-Spring.com> - 2026-01-01 07:28 -0700
Re: naughty Python "Carlos E.R." <robin_listas@es.invalid> - 2026-01-01 15:55 +0100
Re: naughty Python c186282 <c186282@nnada.net> - 2026-01-02 02:40 -0500
Re: naughty Python rbowman <bowman@montana.com> - 2026-01-02 19:29 +0000
Re: naughty Python c186282 <c186282@nnada.net> - 2026-01-02 15:18 -0500
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-02 22:22 +0100
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-03 08:31 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-03 20:12 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-04 07:56 -0700
Re: naughty Pascal Don_from_AZ <djatechNOSPAM@comcast.net.invalid> - 2026-01-04 09:22 -0700
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-04 21:16 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-04 21:00 +0000
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-04 15:11 +0100
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-05 10:49 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-05 19:57 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-05 20:37 -0700
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-06 04:10 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-05 23:21 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-06 06:28 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-06 18:57 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 16:04 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-06 14:22 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 20:47 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-07 02:00 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 22:37 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-07 08:56 -0800
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 04:57 +0000
Re: naughty Pascal Ian <${send-direct-email-to-news1021-at-jusme-dot-com-if-you-must}@jusme.com> - 2026-01-08 09:57 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-07 08:57 -0800
Re: naughty Pascal Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-07 09:41 -0800
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-07 10:29 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-07 22:33 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 04:57 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 00:42 -0500
Re: Naughty Advertising (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-08 07:01 +0000
Re: Naughty Advertising (was Re: naughty Pascal) John Ames <commodorejohn@gmail.com> - 2026-01-08 08:45 -0800
Re: Naughty Advertising (was Re: naughty Pascal) The Natural Philosopher <tnp@invalid.invalid> - 2026-01-08 18:23 +0000
Re: Naughty Advertising (was Re: naughty Pascal) Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 19:16 +0000
Re: Naughty Advertising (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-08 20:11 -0500
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-08 11:27 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 19:16 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 20:23 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 01:48 +0000
Re: naughty Pascal Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-08 19:32 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 23:36 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 06:44 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-08 18:46 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 22:15 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-08 20:13 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 23:40 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-08 22:23 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 07:04 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-09 07:58 -0800
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 18:47 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 20:08 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 10:00 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-09 08:06 -0800
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 18:51 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-09 10:54 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 20:36 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-09 13:24 -0800
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-10 10:27 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-10 07:42 -0700
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-10 19:44 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-10 13:03 -0700
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-10 23:56 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:02 +0000
Re: naughty Pascal Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-10 15:39 -0800
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:05 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 21:49 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-11 21:19 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-12 07:45 -0700
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 18:35 +0000
Re: naughty Pascal Richard Kettlewell <invalid@invalid.invalid> - 2026-01-12 20:52 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-12 20:58 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 06:03 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-13 12:45 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-12 14:26 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-12 18:17 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 06:26 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-13 09:26 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 05:56 +0000
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-20 14:26 +0100
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-20 13:29 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:01 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-10 18:23 +0000
Re: naughty Pascal Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-10 15:50 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-10 22:48 -0500
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:19 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:17 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:07 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-11 16:47 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 19:44 +0000
Re: naughty Pascal Dan Espen <dan1espen@gmail.com> - 2026-01-10 12:14 -0500
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-10 09:45 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 20:32 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-10 20:51 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-10 20:03 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-10 22:31 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 05:39 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-11 01:17 -0500
Re: naughty Pascal Richard Kettlewell <invalid@invalid.invalid> - 2026-01-11 11:00 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:47 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:29 +0000
Re: naughty Pascal Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-11 17:44 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 19:46 +0000
Re: naughty Pascal Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-11 20:23 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 20:30 +0000
Re: naughty Pascal Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-11 21:17 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-11 18:05 -0500
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-11 17:58 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 03:47 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-12 23:41 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-12 22:58 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 05:40 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-13 07:41 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-13 12:38 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 18:00 +0000
Naughty Cat Chris Ahlstrom <OFeem1987@teleworm.us> - 2026-01-13 14:29 -0500
Re: Naughty Cat rbowman <bowman@montana.com> - 2026-01-14 00:42 +0000
Re: Naughty Cat Peter Flass <Peter@Iron-Spring.com> - 2026-01-14 07:27 -0700
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-13 19:34 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-14 00:49 +0000
Tinned tuna [Was: naughty Pascal] "Carlos E.R." <robin_listas@es.invalid> - 2026-01-20 14:58 +0100
Oil down the drain [Was: naughty Pascal] "Carlos E.R." <robin_listas@es.invalid> - 2026-01-20 14:53 +0100
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 20:57 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-12 11:50 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 18:31 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-11 07:43 -0700
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-11 16:44 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 21:34 +0000
Re: naughty Pascal Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-11 21:38 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-12 08:11 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 18:45 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-12 19:52 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 05:22 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-13 00:37 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 08:18 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-12 13:15 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-12 18:10 -0500
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-12 00:47 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 04:10 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-12 15:44 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 18:52 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-12 20:46 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-12 18:12 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 05:50 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-13 12:41 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 18:17 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-13 22:41 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-14 01:01 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-16 21:40 +0000
Re: naughty Pascal Daniel <me@sc1f1dan.com> - 2026-01-18 12:30 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-18 21:08 -0500
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-19 16:22 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-13 09:23 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-12 08:25 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-12 18:22 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:26 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 21:35 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-12 11:57 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-12 23:41 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-13 06:32 +0000
Re: naughty Pascal Harold Stevens <wookie@aspen.localdomain> - 2026-01-13 04:35 -0600
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-20 15:38 +0100
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-09 09:36 -0800
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 06:58 +0000
Re: naughty Pascal Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-09 09:19 -0800
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-07 06:33 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-07 09:55 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-07 21:46 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 04:57 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-07 18:48 -0500
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-07 06:33 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-07 07:31 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-05 23:18 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-06 07:42 -0700
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-06 20:01 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-07 07:27 -0700
Re: naughty Pascal antispam@fricas.org (Waldek Hebisch) - 2026-01-06 22:32 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 20:53 -0500
Re: naughty Pascal cross@spitfire.i.gajendra.net (Dan Cross) - 2026-01-07 11:51 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-06 08:20 -0800
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-06 10:15 +0000
Re: naughty Pascal Chris Ahlstrom <OFeem1987@teleworm.us> - 2026-01-06 06:33 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-06 19:20 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-06 09:14 -0800
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-05 12:33 -0700
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-05 11:50 -0800
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-05 13:37 -0800
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-06 13:19 +0100
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-06 08:30 -0800
Re: naughty Pascal cross@spitfire.i.gajendra.net (Dan Cross) - 2026-01-06 17:04 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 16:30 -0500
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-07 13:40 +0100
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-07 07:47 -0700
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-07 20:08 +0000
Re: naughty Pascal Richard Kettlewell <invalid@invalid.invalid> - 2026-01-07 20:18 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 04:57 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 00:36 -0500
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-08 07:00 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-08 08:33 -0800
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-08 20:00 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-08 20:21 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 22:45 +0000
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-08 23:52 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-09 16:03 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-08 07:51 -0700
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-07 13:38 +0100
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-07 22:03 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-07 19:21 -0700
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-08 02:26 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-07 23:20 -0500
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-08 11:20 +0000
Re: naughty Pascal John Ames <commodorejohn@gmail.com> - 2026-01-08 08:34 -0800
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 20:19 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 01:42 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 09:57 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-08 14:43 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 20:15 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 01:44 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 09:56 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-08 19:28 -0700
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-08 07:47 -0700
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-08 19:52 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 22:45 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 01:35 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 10:02 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-09 08:16 -0700
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-09 18:46 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 20:40 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 20:38 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-09 20:56 -0700
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-10 10:58 +0000
Re: naughty Pascal cross@spitfire.i.gajendra.net (Dan Cross) - 2026-01-10 03:12 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-10 19:39 +0000
Re: naughty useless code (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-10 20:52 +0000
Re: naughty useless code (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-11 00:02 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-09 16:04 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 20:54 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-09 06:36 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-09 08:13 -0700
Re: Naughty PL/I (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-09 18:38 +0000
Re: naughty Pascal Stéphane CARPENTIER <sc@fiat-linux.fr> - 2026-01-10 14:40 +0000
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-10 20:50 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-11 02:00 -0500
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-11 16:55 +0000
Re: Naughty Fortran (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-11 20:24 +0000
Re: Naughty Fortran (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-11 18:00 -0500
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-11 21:31 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-08 19:49 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 20:43 -0500
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-10 19:39 +0000
Re: naughty C (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-10 20:47 +0000
Re: naughty C (was Re: naughty Pascal) Nuno Silva <nunojsilva@invalid.invalid> - 2026-01-11 00:27 +0000
Re: naughty C (was Re: naughty Pascal) John Ames <commodorejohn@gmail.com> - 2026-01-10 18:41 -0800
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-10 20:06 -0700
Re: naughty C (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-10 22:44 -0500
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-11 07:40 -0700
Re: naughty C (was Re: naughty Pascal) Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-11 03:50 +0000
Re: naughty C (was Re: naughty Pascal) Harold Stevens <wookie@aspen.localdomain> - 2026-01-11 05:55 -0600
Re: naughty C (was Re: naughty Pascal) Pancho <Pancho.Jones@protonmail.com> - 2026-01-11 14:18 +0000
Re: naughty C (was Re: naughty Pascal) Andreas Eder <a_eder_muc@web.de> - 2026-01-11 17:00 +0100
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-11 20:44 +0000
Re: naughty C (was Re: naughty Pascal) The Natural Philosopher <tnp@invalid.invalid> - 2026-01-12 11:49 +0000
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-12 07:52 -0700
Re: naughty C (was Re: naughty Pascal) Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-12 17:03 +0000
Re: naughty C (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-12 19:57 +0000
Re: naughty C (was Re: naughty Pascal) scott@slp53.sl.home (Scott Lurndal) - 2026-01-12 20:05 +0000
Re: naughty C (was Re: naughty Pascal) Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-12 20:16 +0000
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-13 05:01 +0000
Re: naughty C (was Re: naughty Pascal) Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-13 06:31 +0000
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-13 08:09 +0000
Re: naughty C (was Re: naughty Pascal) Niklas Karlsson <nikke.karlsson@gmail.com> - 2026-01-13 14:21 +0000
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-13 17:54 +0000
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-13 04:46 +0000
Re: naughty C (was Re: naughty Pascal) rbowman <bowman@montana.com> - 2026-01-13 04:31 +0000
Re: naughty C (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-12 19:56 +0000
Re: naughty C (was Re: naughty Pascal) Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-13 00:24 +0000
Re: naughty C (was Re: naughty Pascal) Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-13 00:36 +0000
Re: naughty C (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-12 23:04 -0500
Re: naughty C (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-11 01:52 -0500
Re: naughty C (was Re: naughty Pascal) John Ames <commodorejohn@gmail.com> - 2026-01-10 23:34 -0800
Re: naughty C (was Re: naughty Pascal) c186282 <c186282@nnada.net> - 2026-01-11 02:50 -0500
Re: naughty C (was Re: naughty Pascal) Stéphane CARPENTIER <sc@fiat-linux.fr> - 2026-01-11 14:55 +0000
Re: naughty C (was Re: naughty Pascal) antispam@fricas.org (Waldek Hebisch) - 2026-01-12 02:42 +0000
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-12 07:50 -0700
Re: naughty C (was Re: naughty Pascal) John Ames <commodorejohn@gmail.com> - 2026-01-12 09:14 -0800
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-12 13:12 -0700
Re: naughty C (was Re: naughty Pascal) Harold Stevens <wookie@aspen.localdomain> - 2026-01-12 14:48 -0600
Re: naughty C (was Re: naughty Pascal) Peter Flass <Peter@Iron-Spring.com> - 2026-01-11 07:48 -0700
Re: naughty Pascal antispam@fricas.org (Waldek Hebisch) - 2026-01-11 01:32 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-11 11:21 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-06 19:22 +0000
Re: naughty Pascal "Carlos E.R." <robin_listas@es.invalid> - 2026-01-07 13:41 +0100
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-05 21:42 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-05 20:33 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-05 22:58 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-05 20:27 -0700
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-05 22:54 -0500
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-06 07:40 -0700
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-06 04:09 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-06 10:10 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-06 07:46 -0700
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-06 17:19 +0000
Re: naughty Pascal Peter Flass <Peter@Iron-Spring.com> - 2026-01-06 12:39 -0700
Re: naughty Pascal cross@spitfire.i.gajendra.net (Dan Cross) - 2026-01-06 19:56 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-07 06:33 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-07 09:44 +0000
Re: naughty Pascal Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-01-06 19:57 +0000
Re: naughty Pascal scott@slp53.sl.home (Scott Lurndal) - 2026-01-06 21:53 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-06 19:17 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-06 16:06 -0500
Re: naughty Pascal cross@spitfire.i.gajendra.net (Dan Cross) - 2026-01-06 23:44 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-07 09:57 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-07 09:56 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-07 22:08 +0000
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-08 11:21 +0000
Re: naughty Pascal Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-01-08 04:57 +0000
Re: naughty Pascal c186282 <c186282@nnada.net> - 2026-01-08 00:41 -0500
Re: naughty Pascal The Natural Philosopher <tnp@invalid.invalid> - 2026-01-08 11:26 +0000
Re: naughty Pascal rbowman <bowman@montana.com> - 2026-01-08 19:59 +0000
(Thread has 949 articles, showing 500 — browse group in flat view)
csiph-web