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


Groups > comp.lang.c > #397642

Re: A thought of C

From wij <wyniijj5@gmail.com>
Newsgroups comp.lang.c
Subject Re: A thought of C
Date 2026-04-18 03:41 +0800
Organization A noiseless patient Spider
Message-ID <54d0bbb61d1b48f5eee4100c75003c7c1157c597.camel@gmail.com> (permalink)
References (9 earlier) <10rt5eo$2del9$1@dont-email.me> <10rt9ir$2d4m0$1@dont-email.me> <10rtdpd$2g1i0$1@dont-email.me> <10rth24$2h2ls$1@dont-email.me> <10rtnud$2jfm5$1@dont-email.me>

Show all headers | View raw


On Fri, 2026-04-17 at 17:42 +0100, Bart wrote:
> On 17/04/2026 15:45, David Brown wrote:
> > On 17/04/2026 15:49, Bart wrote:
> > > On 17/04/2026 13:37, David Brown wrote:
> > > > On 17/04/2026 13:27, Bart wrote:
> > > 
> > > > > Signed integer overflow is the one that everyone knows (though oddly 
> > > > > it is not listed in Appendix J.2, or if it is, it doesn't use the 
> > > > > word 'overflow'!).
> > > > > 
> > > > 
> > > > "An exceptional condition occurs during the evaluation of an 
> > > > expression (6.5.1)"
> > > > 
> > > > You are correct that it does not use the word "overflow" - it's a bit 
> > > > more generic than that.
> > > > 
> > > > > I think there are other obscure ones to do with the order you read 
> > > > > and write members of unions, or apply type-punning, or what you can 
> > > > > do with pointers.
> > > > > 
> > > > > A common scenario is where someone is implementing a language where 
> > > > > such things are well-defined, and they want to run it on a target 
> > > > > machine where they are also well-defined, but decide to use C as an 
> > > > > intermediate language.
> > > > 
> > > > That is an extraordinarily /uncommon/ scenario.
> > > 
> > > Lots of languages do this. A few that you may have heard of include 
> > > Haxe, Seed7, Nim, FreeBasic and Haskell. Although with some it will be 
> > > an option.
> > > 
> > 
> > Do all these languages support type-punning, unions, and signed integer 
> > arithmetic overflow defined in the way you think?  I know Haskell does 
> > not, I don't imagine FreeBasic does, but I can't answer for the others.
> 
> I've no idea. You just said it was uncommon to use C in this way. But 
> every other amateur compiler project on Reddit forums likes to use a C 
> target.
> 
> > > Well, this is the problem.
> > > 
> > 
> > If you feel it is a problem for /you/, then I can't argue against that - 
> > but it is /your/ problem.
> 
> It is a problem when using C for this purpose, which wouldn't arise 
> using a language designed to be used as an intermediate target.
> 
> 
> > >   #define asi64(x) *(i64*)&x
> > 
> > This is an extremely bad way to do conversions.  It is possibly the 
> > reason you need the "-fno-strict-aliasing" flag.  Prefer to use value 
> > casts, not pointer casts, as you do with "tou64".
> 
> For this purpose, the C has to emulate a stack machine, with the stack 
> slots being a fixed type (u64) which have to contain signed and unsigned 
> integers, floats or doubles, or any kinds of pointer, or even any 
> arbitrary struct or array, by value.
> 
> One option was to use a union type for each stack element, but I decided 
> my choice would give cleaner code.
> 
> > >   extern i32 printf(u64 $1, ...);
> > >   extern void exit(i32);
> > > 
> > 
> > Why would you declare these standard library functions like that?  Using 
> > "printf" will be UB, as the declaration does not match the definition. 
> 
> On most 64-bit machines these days you have float and non-float register 
> banks. Pointers are non-floats so can be handled like ints.
> 
> In the IL that this C comes from, there are no pointer types. The 
> convention is to use 'u64' to represent addresses.
> 
> > It might happen to work on x86, but some platform ABIs pass pointers and 
> > integers in different registers.
> 
> The only one I know off-hand is 68K, which has separate data and address 
> registers, and that might happen, so I'll keep it in mind!
> 
> (There is a slim chance I can target 68K from my IL, via an emulator 
> that I would make, but likely I wouldn't be able to use a C library 
> anyway. It's funny I remember thinking around 1984 that those dual 
> register files would make it tricky to compile for.)
> 
> 
> > 
> > And you are doing all this with uninitialised variables, which is UB.
> 
> So this is something else. There should be no problem with using 
> unitialised data here, other than not being meaningful or useful.
> 
> They're uninitialised because my test program didn't bother to do so.
> 
> But running the program shouldn't be a problem. Why, what do you think C 
> might do that is so bad?
> 
> Here is the original HLL fragment:
> 
>      int a, b, c
>      a := b + c
> 
> This is the portable IL generated from that:
> 
>      i64 x
>      i64 y
>      i64 z
> 
>      load      y                          i64     # load/store = push/pop
>      load      z                          i64
>      add                                  i64
>      store     x                          i64
> 
> This uses two stack slots. In the C above, those slots are called R1 and R2.
> 
> The same IL can be turned directly into x64 code:
> 
>      R.a = D3               # D0-D15 are 64-bit regs
>      R.b = D4
>      R.c = D5
>      mov   D0,   R.b
>      add   D0,   R.c
>      mov   R.a,  D0
> 
> (This could be reduced to one instruction, but it's no faster.)
> 
> AFAIK no hardware exceptions are caused by adding whatever bit patterns 
> happen to be in those 'b' and 'c' registers.
> 
> 
> > It's not C that's the problem here.  If you see problems, it is because 
> > you are pretending that C is something that it is not, and that you can 
> > write all sorts of risky nonsense.
> 
> I use generated C for three things:
> 
> * To share my non-C programs with others, who can't/won't use my 
> compiler binary
> 
> * To optimise my non-C programs
> 
> * To run my non-C programs on platforms I don't directly support.
> 
> When I do that, it seems to work. Eg. Paul Edwards is using my C 
> compiler, and I distribute it as a 66Kloc file full of code like my 
> example. But I can also distribute it as NASM, AT&T or MASM assembly.
> 
> > > Why would I be lying if I clearly use a cast to change T* (or some 
> > > integer X) to U*?
> > > 
> > 
> > C requires you to access objects using lvalues of the appropriate type. 
> > But it also allows conversions between various pointer types - that is 
> > how you can have generic and flexible code (such as using malloc returns 
> > for different types).  So if you have a pointer "p" of type "T*", and 
> > you write "(U*) p", you are telling the compiler "I know I said p was a 
> > pointer to objects of type T, but in this particular case it is actually 
> > pointing to an object of type U - the value contained in p started off 
> > as the address of a U, before it was converted to a T*".  If the thing 
> > your pointer "p" points to is /not/ an object of type U (or other 
> > suitable type, following the compatibility and qualifier rules), then 
> > you are lying to the compiler.
> 
> I don't care about any of this. If I take a byte* pointer and cast it to 
> int* and then write via that version, I expect it to do exactly that, 
> and not question my choice!
> 
> This is exactly how it works in assembly, in my HLLs, and in my ILs.
> 
> It's possible that I may have done that erroneously, but that is another 
> matter. This is not about detecting coding bugs in the source language.

If I understand from several of your posts, you might expect that the standard C
can cover all you need. Nope, C standard only specifies the common part of C. IOW.

Let Mx denote the set of machine using x language.
Mstd= Ma && Mb && Mc && ...  // |Mstd|<= min(|Ma|, |Mb|, |Mc|, ... )

The first thing is you have to specify the set of machine. 'portibility' along
has no meaning.

The second.  Your IL would be more 'portable' than any of the source language
of the IL. I.e. Your IL (in C) is doomed non-portable C, you have do all the
non-portable part yourself to cover all the source languages (machine). I.e.
IL would be non-standard conforming.

The third. There are still many details there, e.g. C uses flat memory model...
many that C might not be able to simulate properly, depends on requirement.

So, I still recogmend the Soft Processing Unit idea (again):

------------------
NAME
       Spu - Class of general purpose Soft-CPU

SYNOPSIS
       Except POD types, C structures, all types are declared in namespace Wy.

       #include <CSCall/SctBase.h>

       Spu is an object oriented model (class) of Turing Machine that acts like
       a  general  purpose CPU-based computing machine to provide semantics for
       computing languages (for programming or for program communication).  Ap‐
       plications are both theoretical and practical.

       The  main differences of Spu and general purpose CPU (or TM) is that Spu
       has no ´register´ nor ´flag´ (which, along with  others,  can  be  simu‐
       lated),  Spu  has  only a tape and a stack. The tape is initially empty.
       Every object (referred to as tape variable or cell) in the tape is allo‐
       cated via instruction Alloc and identified by a continuous index number.
       Tape variable can be any C++ type, including Spu.

       The instructions of Spu  are  application  definable  because  they  are
       wildly varying from different purposes.  Except necessary few, about >30
       instructions  are  defined for convenience for common usage, see manpage
       Wy.Sct(3wy).

       Documentation following omits the scope name Wy::Sct for each occurrence
       of Spu for clarity.

PUBLIC MEMBERS
        class Reply
        typedef ssize_t IndexType
        Spu()
        ~Spu()

        InstrIdx next_instr
        Array<InstrIdx> istack
        Array<unsign char> tape
        PtrArray<InstrBase> program

        template<T> const T& get_data(IndexType) const
        template<T> T& get_data(IndexType)
        const std::type_info& get_typeinfo(IndexType) const
        void set_instr_base(Spu&)
        Errno run(InstrIdx)
        Errno step()
        void add_instr(InstrBase*)
[cut].....
-----------------

Basically, invent IL instruction, and use 'alloc' instruction to create memory space.

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

A thought of C wij <wyniijj5@gmail.com> - 2026-04-14 22:47 +0800
  Re: A thought of C Bart <bc@freeuk.com> - 2026-04-14 18:45 +0100
    Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 02:41 +0800
      Re: A thought of C Jonathan Lamothe <jonathan@jlamothe.net> - 2026-04-14 15:56 -0400
      Re: A thought of C Bart <bc@freeuk.com> - 2026-04-14 22:41 +0100
        Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-15 00:20 +0200
          Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 00:33 +0100
            Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-15 09:57 +0200
              Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 15:43 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-16 09:10 +0200
              Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:12 -0700
              Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:12 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:20 -0700
            Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-16 06:28 -0400
              Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-16 14:03 -0700
              Re: A thought of C Bart <bc@freeuk.com> - 2026-04-16 22:13 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-16 14:33 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-16 20:26 -0400
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-17 12:27 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-17 14:37 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-17 16:37 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-17 15:54 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-17 14:49 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-17 16:45 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-17 17:42 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-17 10:22 -0700
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-18 03:41 +0800
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-18 15:37 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-18 16:08 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-18 17:35 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-19 13:44 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-19 16:06 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-18 17:35 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-18 18:29 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-19 12:17 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-19 12:50 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-19 14:17 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-19 15:28 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-19 17:47 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-19 18:47 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-19 21:32 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 00:36 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-20 08:25 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 12:45 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-20 15:02 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 15:32 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-20 18:04 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 10:50 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 20:50 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 14:30 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 23:09 +0100
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-22 05:01 +0200
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-22 04:53 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 10:48 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 21:13 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-20 20:27 +0000
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 15:04 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 09:00 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 14:59 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 23:36 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-20 18:22 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 11:01 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 13:44 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 13:48 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 15:43 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 16:01 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 18:03 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 09:19 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 18:51 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 13:16 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-22 01:01 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 19:53 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 09:40 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-22 13:01 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-22 14:23 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 00:52 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-22 19:26 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 11:30 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 13:12 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-23 15:12 +0300
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-23 14:18 +0000
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-23 17:35 +0300
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-23 10:32 -0400
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-23 17:45 +0300
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 13:43 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 16:40 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 17:42 +0100
                Re: A thought of C DFS <nospam@dfs.com> - 2026-04-25 10:38 -0400
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 15:16 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 13:50 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 04:43 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 13:33 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-23 14:22 +0000
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-23 17:39 +0300
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 17:02 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 14:40 +0200
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-23 14:17 +0000
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-23 19:42 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 22:04 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-23 23:15 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-24 01:06 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 17:57 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-24 08:27 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 01:33 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-24 11:27 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-24 13:11 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-24 14:55 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-24 14:05 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-24 17:26 +0300
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 10:09 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 10:14 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-23 16:10 +0200
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 08:25 +0200
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-23 17:41 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 20:19 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-25 23:04 +0000
                time measurements (Re: A thought of C) Michael S <already5chosen@yahoo.com> - 2026-04-26 12:34 +0300
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 09:03 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 08:58 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 12:40 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 22:56 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 15:07 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 10:28 +0200
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 10:13 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-21 11:51 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 22:13 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-22 14:28 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-22 14:29 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 09:22 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 02:03 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 02:07 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 11:30 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 14:06 -0700
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-21 00:39 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 02:34 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-21 23:41 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-22 12:49 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 10:01 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 12:12 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 13:57 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-21 15:55 +0300
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 14:49 +0100
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-21 18:44 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 18:06 +0200
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-21 21:24 -0700
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 13:02 +0300
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-23 08:07 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-21 21:12 -0700
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 12:48 +0300
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-22 04:36 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 20:13 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-22 15:14 +0100
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 17:56 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 17:12 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 18:21 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 17:57 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 19:16 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 21:42 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-22 14:33 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 00:22 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-22 18:59 -0700
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-23 11:07 +0800
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 09:47 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-22 23:16 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 10:58 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 03:43 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 12:48 +0200
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-23 10:42 -0400
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 16:30 +0100
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-23 09:21 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 17:27 +0100
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-25 14:19 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 17:25 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-23 21:17 -0400
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 14:08 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-23 23:18 +0100
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-24 01:31 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 17:51 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:19 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-23 21:34 -0400
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-24 04:26 +0200
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-24 20:26 -0400
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:21 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:21 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:20 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:23 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 18:27 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 18:57 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 20:26 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 23:03 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 23:50 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-25 12:04 -0400
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-25 12:00 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-25 21:24 +0100
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-25 13:52 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-25 22:27 +0100
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-26 00:48 +0300
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 15:49 -0700
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-26 02:24 +0300
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-25 20:07 -0400
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 17:14 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-26 04:34 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-25 18:08 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-25 17:20 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-26 01:47 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 18:40 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-25 19:58 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 15:39 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-26 00:53 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 18:27 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-26 02:41 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 19:03 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 19:08 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-26 05:04 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-26 12:32 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-26 15:13 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-26 16:27 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-26 17:19 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-26 15:34 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-27 19:30 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-26 12:14 +0100
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-26 15:23 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-26 20:02 -0400
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-26 04:24 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 20:05 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-26 05:16 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 21:26 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-26 17:51 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 15:31 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-25 20:19 -0400
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-25 18:11 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-25 18:34 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-26 20:58 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 18:44 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 20:24 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-24 23:01 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 23:49 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-24 20:26 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 09:42 +0200
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-20 13:49 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 18:34 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-20 22:57 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 23:03 +0100
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 10:53 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-21 02:56 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-21 14:10 +0200
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-21 21:04 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 08:28 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 11:31 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-21 14:27 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 15:38 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-21 15:38 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-21 17:55 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-21 17:28 +0000
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 11:13 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-21 19:11 +0300
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-21 21:09 -0700
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-22 15:16 +0100
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-22 15:13 +0000
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 18:26 +0300
                Re: A thought of C Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2026-04-22 16:09 +0000
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 08:18 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-23 01:56 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-24 02:29 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 18:18 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-24 03:57 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 19:11 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-23 09:14 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-22 17:27 +0200
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-22 18:52 +0300
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-22 20:39 -0700
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-23 13:15 +0300
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-23 12:50 +0200
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-23 08:46 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-24 02:40 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 18:31 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-22 20:37 -0700
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-23 02:37 -0700
                Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-23 06:46 -0700
                Re: A thought of C Michael S <already5chosen@yahoo.com> - 2026-04-19 16:54 +0300
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-19 16:02 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-20 00:49 +0000
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-20 17:17 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-26 22:57 +0000
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-27 02:55 +0200
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-27 02:06 +0100
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-29 02:00 +0100
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-29 04:31 +0000
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-19 15:36 +0200
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-17 10:25 -0700
                Re: A thought of C James Kuyper <jameskuyper@alumni.caltech.edu> - 2026-04-17 16:30 -0400
        Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 12:20 +0800
          Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 11:21 +0100
            Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 19:52 +0800
              Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 14:24 +0100
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 00:40 +0800
  Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-14 15:31 -0700
    Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 12:15 +0800
      Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-14 21:46 -0700
        Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 14:05 +0800
          Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-15 10:24 +0200
          Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 11:46 +0100
            Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 20:21 +0800
              Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-15 20:26 +0800
              Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-15 15:38 +0200
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 00:58 +0800
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-15 22:11 +0200
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 05:38 +0800
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 15:48 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:31 -0700
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-16 09:13 +0200
                Re: A thought of C antispam@fricas.org (Waldek Hebisch) - 2026-04-16 04:43 +0000
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-16 09:23 +0200
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-16 14:38 +0000
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-16 17:05 +0200
                Re: A thought of C Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2026-04-16 15:11 +0000
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-16 17:43 +0200
                Re: A thought of C Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2026-04-16 16:23 +0000
                Re: A thought of C cross@spitfire.i.gajendra.net (Dan Cross) - 2026-04-16 19:48 +0000
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-16 19:04 +0000
                Re: A thought of C scott@slp53.sl.home (Scott Lurndal) - 2026-04-16 19:01 +0000
                Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 15:34 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:29 -0700
              Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 15:06 +0100
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 05:12 +0800
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-15 23:52 +0100
                Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 07:30 +0800
                Re: A thought of C Bart <bc@freeuk.com> - 2026-04-16 00:50 +0100
                Re: A thought of C Jonathan Lamothe <jonathan@jlamothe.net> - 2026-04-15 20:17 -0400
                Re: A thought of C David Brown <david.brown@hesbynett.no> - 2026-04-16 09:35 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:37 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:40 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:47 -0700
                Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-16 13:19 +0200
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-16 14:28 -0700
                Re: A thought of C "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2026-04-15 23:34 -0700
          Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 15:12 -0700
            Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 07:22 +0800
              Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 16:52 -0700
                [meta] signature quote (was Re: A thought of C) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-16 03:13 +0200
  Re: A thought of C 🇵🇱Jacek Marcin Jaworski🇵🇱 <jmj@energokod.gda.pl> - 2026-04-15 07:00 +0200
  Re: A thought of C makendo <makendo@makendo.invalid> - 2026-04-15 21:40 +0800
    Re: A thought of C Jonathan Lamothe <jonathan@jlamothe.net> - 2026-04-15 10:51 -0400
      Re: A thought of C makendo <makendo@makendo.invalid> - 2026-04-16 12:44 +0800
    Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 01:11 +0800
    Re: A thought of C 🇵🇱Jacek Marcin Jaworski🇵🇱 <jmj@energokod.gda.pl> - 2026-04-15 20:23 +0200
      Re: A thought of C "Kerr-Mudd, John" <admin@127.0.0.1> - 2026-04-15 21:01 +0100
        Re: A thought of C 🇵🇱Jacek Marcin Jaworski🇵🇱 <jmj@energokod.gda.pl> - 2026-04-15 22:40 +0200
          Re: A thought of C "Kerr-Mudd, John" <admin@127.0.0.1> - 2026-04-16 11:38 +0100
            Re: A thought of C "Kerr-Mudd, John" <admin@127.0.0.1> - 2026-04-30 11:31 +0100
    Re: A thought of C Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-04-19 07:41 +0000
  Re: A thought of C Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-04-15 17:14 -0700
    Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 09:27 +0800
      Re: A thought of C Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-04-15 19:04 -0700
        Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 18:42 +0800
          Re: A thought of C gazelle@shell.xmission.com (Kenny McCormack) - 2026-04-16 13:10 +0000
            Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 22:21 +0800
              Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-16 17:03 +0200
          Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-16 22:14 +0800
            Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-18 22:17 +0800
              Re: A thought of C wij <wyniijj5@gmail.com> - 2026-04-21 06:29 +0800
              Re: A thought of C Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-04-24 02:27 +0000
      Re: A thought of C Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2026-04-16 04:05 +0200
    Re: A thought of C cross@spitfire.i.gajendra.net (Dan Cross) - 2026-04-16 11:24 +0000
  Re: A thought of C Rosario19 <Ros@invalid.invalid> - 2026-04-18 11:33 +0200

csiph-web