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


Groups > comp.lang.c > #394952

Re: New and improved version of cdecl

From bart <bc@freeuk.com>
Newsgroups comp.lang.c
Subject Re: New and improved version of cdecl
Date 2025-10-30 00:36 +0000
Organization A noiseless patient Spider
Message-ID <10dubtm$3bcua$1@dont-email.me> (permalink)
References (19 earlier) <87zf9azo0m.fsf@example.invalid> <10drip8$2gm7h$1@dont-email.me> <10dteds$30cp7$2@dont-email.me> <10du0gt$37r02$1@dont-email.me> <10du6ic$39mk9$1@dont-email.me>

Show all headers | View raw


On 29/10/2025 23:04, David Brown wrote:
> On 29/10/2025 22:21, bart wrote:

>> It was certainly an issue here: the 'make' part of building CDECL and 
>> A68G, I considered slow for the scale of the task given that the apps 
>> are 68 and 78Kloc (static total of .c and .h files).
>>
> 
> I have no interest in A68G.  I have no stake in cdecl or knowledge (or 
> particular interest) in how it was written, and how appropriate the 
> number of lines of code are for the task in hand.  I am confident it 
> could have been written in a different way with less code - but not at 
> all confident that doing so would be in any way better for the author of 
> the program.  I am also confident that you know far too little about 
> what the program can do, or why it was written the way it was, to judge 
> whether it has a "reasonable" number of lines of code, or not.
> 
> However, it's easy to look at the facts.  The "src" directory from the 
> github clone has about 50,000 lines of code in .c files, and 18,000 
> lines of code in .h files.  The total is therefore about 68 kloc of 
> source.  This does not at all mean that compilation processes exactly 68 
> thousand lines of code - it will be significantly more than that as 
> headers are included by multiple files, and lots of other headers from 
> the C standard library and other libraries are included.  Let's guess 
> 100 kloc.

Yes, that's why I said the 'static' line counts are 68 and 78K. Maybe 
the slowdown is due to some large headers that lie outside the problem 
(not the standard headers), but so what? (That would be a shortcoming of 
the C language.)

The A68G sources also contain lots of upper-case content, so perhaps 
macro expansion is going on too.

The bottom line is this is an 80Kloc app that takes that long to buidld.

> 
> The build process takes 8 seconds on my decade-old machine, much of 
> which is something other than running the compiler.  (Don't ask me what 
> it is doing - I did not write this software, design its build process, 
> or determine how the program is structured and how it is generated by 
> yacc or related tools.  This is not my area of expertise.)  If for some 
> strange reason I choose to run "make" rather than "make -j", thus 
> wasting much of my computer's power, it takes 16 seconds.  Some of these 
> non-compilation steps do not appear to be able to run in parallel, and a 
> couple of the compilations (like "parser.c", which appears to be from a 
> parser generator rather than specifically written) are large and take a 
> couple of seconds to compile.  My guess is that the actual compilations 
> are perhaps 4 seconds.  Overall, I make it 25 kloc per second.  While I 
> don't think that is a particularly relevant measure of anything useful, 
> it does show that either you are measuring the wrong thing, using a 
> wildly inappropriate or limited build environment, or are unaware of how 
> to use your computer to build code.

Tell me then how I should do it to get single-figure build times for a 
fresh build. But whatever it is, why doesn't it just do that anyway?!

> (And my computer cpu was about 30% 
> busy doing other productive tasks, such as playing a game, while I was 
> doing those builds.)
> 
> 
> So, you are exaggerating, mismeasuring or misusing your system to get 
> build times that are well over an order of magnitude worse than 
> expected.  This follows your well-established practice.

So, what exactly did I do wrong here (for A68G):

   root@DESKTOP-11:/mnt/c/a68g/algol68g-3.10.5# time make >output
   real    1m32.205s
   user    0m40.813s
   sys     0m7.269s

This 90 seconds is the actual time I had to hang about waiting. I'd be 
interested in how I managed to manipulate those figures!

BTW 68Kloc would be CDECL; and 78Kloc is A68G. The CDECL timings are:

   root@DESKTOP-11:/mnt/c/Users/44775/Downloads/cdecl-18.5# time make 
 >output
   <warnings>
   real    0m49.512s
   user    0m19.033s
   sys     0m3.911s

On the RPi4 (usually 1/3 the speed of my PC), the make-time for A68G was 
137 seconds (using SD storage; the PC uses SSD), so perhaps 40 seconds 
on the PC, suggesting that the underlying Windows file system may be 
slowing things down, but I don't know.

However the same PC, under actual Windows, manages this:

   c:\qx>tim mm qq
   Compiling qq.m to qq.exe      (500KB but half is data; A68G is 1MB?)
   Time: 0.084

And this:

   c:\cx>tim tcc lua.c           (250-400KB)
   Time: 0.124

> And you claim your own tools would be 1000 times faster.

In this case, yes. The figure is more typically around 100 if the other 
compiler is optimising, however that would be representations of the 
same program. A68G is somewhat bigger than my product.

>  Maybe they 
> would be.  Certainly there have been tools in the past that are much 
> smaller and faster than modern tools, and were useful at the time. 
> Modern tools do so much more, however.  A tool that doesn't do the job 
> needed is of no use for a given task, even if it could handle other 
> tasks quickly.

It ran my test program; that's what counts!




> 
> But the crux of the matter, and I can't stress this enough as it never 
> seems to get through to you, is that fast enough is fast enough.  No one 
> cares how long cdecl takes to build.

I don't care either; I just wanted to try it.

But I pick up things that nobody else seems to: this particular build 
was unusually slow; why was that? Perhaps there's a bottleneck in the 
process that needs to be fixed, or a bug, that would give benefits when 
it does matter.

(An article posted in Reddit detailed how a small change in how Clang 
worked made a 5-7% difference in build times for large projects.

You'd probably dismiss it as irrelevant, but lots of such improvements 
build up. At least it is good that some people are looking at such aspects.

https://cppalliance.org/mizvekov,/clang/2025/10/20/Making-Clang-AST-Leaner-Faster.html)


> Of course everyone agrees that smaller and faster is better, all things 
> being equal - but all things are usually /not/ equal, and once something 
> is fast enough to be acceptable, making it faster is not a priority.

My compilers have already reached that threshold (most stuff builds in 
the time it takes to take my finger off the Enter button). But most 
mainstream compilers are a LONG way off.


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


Thread

New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-22 14:39 -0700
  Re: New and improved version of cdecl Thiago Adams <thiago.adams@gmail.com> - 2025-10-22 22:19 -0300
    Re: New and improved version of cdecl Ben Bacarisse <ben@bsb.me.uk> - 2025-10-23 02:42 +0100
      Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 03:04 +0000
        Re: New and improved version of cdecl Ben Bacarisse <ben@bsb.me.uk> - 2025-10-23 15:05 +0100
    Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-23 11:36 +0100
      Re: New and improved version of cdecl Thiago Adams <thiago.adams@gmail.com> - 2025-10-23 07:59 -0300
      Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-23 16:04 -0700
        Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-24 01:44 +0100
          Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-23 19:00 -0700
            Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-24 14:27 +0100
              Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-24 19:35 +0200
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-24 19:50 +0100
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-24 18:59 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-24 13:20 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-24 23:18 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-26 07:25 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-26 11:26 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-26 13:26 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-26 16:07 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-26 17:03 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-26 16:04 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-26 16:58 +0000
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-26 17:27 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-26 22:49 +0200
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-26 23:07 +0200
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 18:01 +0000
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-29 20:33 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 23:29 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 16:07 -0700
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-27 03:08 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 12:50 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 12:58 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-27 14:45 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-27 14:48 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 15:23 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-27 22:39 +0200
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 03:00 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-28 15:59 +0100
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-28 16:05 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-28 20:00 +0200
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-28 18:28 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-28 20:49 +0200
                Re: New and improved version of cdecl Ben Bacarisse <ben@bsb.me.uk> - 2025-10-29 21:30 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 20:32 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 20:14 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-29 16:36 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 17:24 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-27 14:39 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 15:11 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 03:35 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 11:16 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-28 14:59 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 23:14 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-28 18:48 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 19:24 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-29 15:10 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 23:19 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-29 18:03 -0700
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 09:02 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-29 08:06 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 11:20 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-29 17:12 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 21:21 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 00:04 +0100
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-29 16:47 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 00:36 +0000
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-30 03:37 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-29 21:24 -0700
                Re: New and improved version of cdecl vallor <vallor@vallor.earth> - 2025-10-30 04:52 +0000
                Re: New and improved version of cdecl vallor <vallor@vallor.earth> - 2025-10-30 05:38 +0000
                Re: New and improved version of cdecl Richard Heathfield <rjh@cpax.org.uk> - 2025-10-30 07:45 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-30 16:41 +0200
                Re: New and improved version of cdecl richard@cogsci.ed.ac.uk (Richard Tobin) - 2025-10-30 16:26 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-30 17:30 +0000
                Re: New and improved version of cdecl richard@cogsci.ed.ac.uk (Richard Tobin) - 2025-10-30 18:29 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-30 18:37 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-30 13:21 -0700
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-31 07:44 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-31 07:49 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 12:50 +0100
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-31 00:27 +0000
                Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-30 17:35 -0700
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-30 14:13 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 14:32 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-30 16:22 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 17:40 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 12:39 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-31 13:57 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 14:55 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-31 17:18 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 17:52 +0000
                Re: New and improved version of cdecl tTh <tth@none.invalid> - 2025-10-30 05:00 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 11:15 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 12:07 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 16:04 +0100
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-30 18:30 +0200
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 17:49 +0000
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-30 18:59 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 23:23 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-30 16:44 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 00:15 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-30 18:16 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 01:36 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-30 19:13 -0700
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-31 13:43 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-31 13:10 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 16:34 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 23:01 +0100
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-31 00:28 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 01:22 +0000
                Re: New and improved version of cdecl tTh <tth@none.invalid> - 2025-10-31 10:29 +0100
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-31 13:15 +0200
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-31 21:39 +0000
                Re: New and improved version of cdecl richard@cogsci.ed.ac.uk (Richard Tobin) - 2025-10-31 11:43 +0000
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-31 22:47 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-31 13:16 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 23:40 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-31 17:14 -0700
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-31 09:31 +0100
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-30 23:11 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 23:49 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-31 02:14 +0000
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-31 22:01 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-11-01 11:57 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-11-01 14:56 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-30 13:37 -0700
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-30 23:37 +0100
                Re: New and improved version of cdecl tTh <tth@none.invalid> - 2025-10-31 11:52 +0100
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-31 13:48 +0000
                Re: New and improved version of cdecl vallor <vallor@vallor.earth> - 2025-10-29 23:11 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-29 06:57 +0100
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-29 14:17 +0200
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 14:40 +0000
                Re: New and improved version of cdecl tTh <tth@none.invalid> - 2025-10-29 16:09 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-29 16:47 +0000
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-30 05:11 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-30 12:56 +0000
                Re: New and improved version of cdecl James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-10-28 17:34 -0400
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-31 04:37 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-27 13:31 -0700
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-27 20:52 +0000
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-27 17:30 -0700
                Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-27 19:11 -0700
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-27 19:59 -0700
                Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-27 23:45 -0700
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 10:27 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 01:22 +0000
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 17:03 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 22:26 +0000
                Re: New and improved version of cdecl Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 00:04 +0000
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-26 13:15 +0200
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 14:56 -0700
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-27 00:34 +0200
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 15:45 -0700
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-27 01:12 +0200
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 16:15 -0700
                Re: New and improved version of cdecl Michael S <already5chosen@yahoo.com> - 2025-10-28 14:56 +0200
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 13:18 +0000
                Re: New and improved version of cdecl scott@slp53.sl.home (Scott Lurndal) - 2025-10-28 15:03 +0000
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-28 16:16 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-25 13:04 +0200
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-25 13:51 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-25 17:18 +0200
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-26 07:44 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-26 15:12 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-27 10:44 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 11:22 +0000
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-27 17:35 +0100
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-27 17:44 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 04:10 +0100
                Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-27 23:47 -0700
                Re: New and improved version of cdecl antispam@fricas.org (Waldek Hebisch) - 2025-10-27 22:33 +0000
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 04:23 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-28 16:20 +0100
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-27 13:48 -0700
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-28 04:41 +0100
                Re: New and improved version of cdecl James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-10-25 11:40 -0400
                Re: New and improved version of cdecl bart <bc@freeuk.com> - 2025-10-25 16:48 +0100
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-25 19:14 +0200
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-25 15:14 -0700
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-26 08:07 +0100
                Re: New and improved version of cdecl Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-24 21:36 +0200
                Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-24 13:07 -0700
                Re: New and improved version of cdecl David Brown <david.brown@hesbynett.no> - 2025-10-25 13:15 +0200
              Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-24 13:01 -0700
        Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-24 15:01 -0700
  Re: New and improved version of cdecl Andrey Tarasevich <noone@noone.net> - 2025-10-26 12:09 -0700
    Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 15:36 -0700
      Re: New and improved version of cdecl "Paul J. Lucas" <paul@lucasmail.org> - 2025-12-09 07:31 -0800
        Re: New and improved version of cdecl Kaz Kylheku <046-301-5902@kylheku.com> - 2025-12-09 20:38 +0000
          Re: New and improved version of cdecl "Paul J. Lucas" <paul@lucasmail.org> - 2025-12-09 16:46 -0800
            Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-12-09 17:51 -0800
  Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-26 14:44 -0700
    Re: New and improved version of cdecl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-10-26 15:38 -0700
      Re: New and improved version of cdecl "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-27 11:51 -0700

csiph-web