Groups | Search | Server Info | Login | Register


Groups > comp.unix.programmer > #16427

Re: On overly rigid definitions (was Re: Command Languages Versus Programming Languages)

From cross@spitfire.i.gajendra.net (Dan Cross)
Newsgroups comp.unix.shell, comp.unix.programmer, comp.lang.misc
Subject Re: On overly rigid definitions (was Re: Command Languages Versus Programming Languages)
Date 2024-10-14 00:58 +0000
Organization PANIX Public Access Internet and UNIX, NYC
Message-ID <vehqb3$4q$1@reader1.panix.com> (permalink)
References <uu54la$3su5b$6@dont-email.me> <vegs0o$nh5t$1@dont-email.me> <vehajq$fl2$2@reader1.panix.com> <veho4s$sghb$1@dont-email.me>

Cross-posted to 3 groups.

Show all headers | View raw


In article <veho4s$sghb$1@dont-email.me>, Bart  <bc@freeuk.com> wrote:
>On 13/10/2024 21:29, Dan Cross wrote:
>> In article <vegs0o$nh5t$1@dont-email.me>, Bart  <bc@freeuk.com> wrote:
>>> On 13/10/2024 16:52, Dan Cross wrote:
>>>>[snip]
>>>> Sure.  But the fact that any of these were going concerns is an
>>>> existence proof that one _can_ take bytecodes targetted toward a
>>>> "virtual" machine and execute it on silicon,
>>>> making the
>>>> distinction a lot more fluid than might be naively assumed, in
>>>> turn exposing the silliness of this argument that centers around
>>>> this weirdly overly-rigid definition of what a "compiler" is.
>>>
>>> I've implemented numerous compilers and interpreters over the last few
>>> decades (and have dabbled in emulators).
>>>
>>> To me the distinctions are clear enough because I have to work at the
>>> sharp end!
>>>
>>> I'm not sure why people want to try and be clever by blurring the roles
>>> of compiler and interpreter; that's not helpful at all.
>> 
>> I'm not saying the two are the same; what I'm saying is that
>> this arbitrary criteria that a compiler must emit a fully
>> executable binary image is not just inadquate, but also wrong,
>> as it renders separate compilation impossible.  I am further
>> saying that there are many different _types_ of compilers,
>> including specialized tools that don't emit machine language.
>> 
>>> Sure, people can write emulators for machine code, which are a kind of
>>> interpreter, or they can implement bytecode in hardware; so what?
>> 
>> That's exactly my point.
>
>So, then what, we do away with the concepts of 'compiler' and 
>'interpreter'? Or allow them to be used interchangeably?

I don't see how you can credibly draw that conclusion from what
I've been saying.

But it's really pretty straight-forward; a compiler effects a
translation from one computer language to another (the
definition from Aho et al).  An interpreter takes a program
written in some computer language and executes it.  Of course
there's some gray area here; is a load-and-go compiler a
compiler in this sense (yes; it is still translating between
its source language and a machine language) or an interpreter?
(Possibly; after all, it's taking a source language and causing
a program written in it to be executed.)

Java is an interesting case in point here; the Java compiler is
obviously a compiler; the JVM is an interpreter.  I don't think
anyone would dispute this.  But by suggesting some hard and fast
division that can be rigidly upheld in all cases we're ignoring
so much nuance as to be reductive; but by pointing these things
out, we see how inane it is to assert that a "proper compiler"
is only one that takes a textual source input and emits machine
code for a silicon target.

>Somehow I don't think it is useful to think of gcc as a interpreter for 
>C, or CPython as an native code compiler for Python.

I don't think anyone suggested that.  But we _do_ have examples
of true compilers emitting "code" for interpreters; cf LLVM and
eBPF, which I mentioned previously in this thread, or compilers
that emit code for hypothetical machines like MMIX, or compilers
that emit instructions that aren't implemented everywhere, or
more precisely are implemented by trap and emulation.

>>> That doesn't really affect what I do. Writing compiler backends for
>>> actual CPUs is hard work. Generating bytecode is a lot simpler.
>> 
>> That really depends on the bytecode, doesn't it?  The JVM is a
>> complex beast;
>
>Is it? It's not to my taste, but it didn't look too scary to me. Whereas 
>modern CPU instruction sets are horrendous. (I normally target x64, 
>which is described in 6 large volumes. RISC ones don't look much better, 
>eg. RISC V with its dozens of extensions and special types)

I dunno.  Wirth wrote an Oberon compiler targeting MIPS in ~5000
lines of code.  It was pretty straight-forward.

And most of those ten volumes in the SDM have to do with the
privileged instruction set and details of the memory model like
segmentation and paging, most of which don't impact the compiler
author much at all: beyond, perhaps providing an intrinsic for
the `rdmsr` and `wrmsr` instructions, I don't think you care
much about MSRs, let alone VMX or the esoterica of under what
locked cycles the hardware sets the "A" bit on page table
entries on a TLB miss.

>Example of JVM:
>
>   aload index      Push a reference from local variable #index

Ok. `leaq index(%rip), %rax; pushq %rax` isn't that hard either.

> >>MIPS or the unprivileged integer subset of RISC-V
>> are pretty simple in comparison.
>> 
>>> (Especially in my case as I've devised myself, another distinction.
>>> Compilers usually target someone else's instruction set.)
>>>
>>> If you want one more distinction, it is this: with my compiler, the
>>> resultant binary is executed by a separate agency: the CPU. Or maybe the
>>> OS loader will run it through an emulator.
>> 
>> Python has a mode by which it will emit bytecode _files_, which
>> can be separately loaded and interpreted; it even has an
>> optimizing mode.  Is that substantially different?
>
>Whether there is a discrete bytecode file is besides the point. (I 
>generated such files for many years.)
>
>You still need software to execute it. Especially for dynamically typed 
>bytecode which doesn't lend itself easily to either hardware 
>implementations, or load-time native code translation.

Sure.  But if execution requires a "separate agency", and you
acknowledge that could be a CPU or a separate program, how is
that all that different than what Python _does_?  That doesn't
imply that the Python interpreter is the same as a CPU, or that
an interpreter is the same as a compiler.  But it does imply
that the definitions being thrown about here aren't particularly
good.

>>> With my interpreter, then *I* have to write the dispatch routines and
>>> write code to implement all the instructions.
>> 
>> Again, I don't think that anyone disputes that interpreters
>> exist.  But insisting that they must take a particular shape is
>> just wrong.
>
>What shape would that be? Generally they will need some /software/ to 
>excute the instructions of the program being interpreted, as I said. 
>Some JIT products may choose to do on-demand translation to native code.
>
>Is there anything else? I'd be interested in anything new!

I actually meant to write that "insisting that _compilers_ take
a specific shape is just wrong."  But I think the point holds
reasonably well for interpreters, as well: they need not
directly interpret the text of a program; they may well create
some sort of internal bytecode after several optimization and
type checking steps, looking more like a load-and-go compiler
than, say, the 6th Edition Unix shell.

Comparison to Roslyn-style compilers blurs the distinction
further still.

>>> (My compilers generate an intermediate language, a kind of VM, which is
>>> then processed further into native code.
>> 
>> Then by the definition of this psuedonyminous guy I've been
>> responding to, your compiler is not a "proper compiler", no?
>
>Actually mine is more of a compiler than many, since it directly 
>generates native machine code. Others generally stop at ASM code (eg. 
>gcc) or OBJ code, and will invoke separate programs to finish the job.
>
>The intermediate language here is just a step in the process.
>
>>> But I have also tried interpreting that VM; it just runs 20 times slower
>>> than native code. That's what interpreting usually means: slow programs.)
>> 
>> Not necessarily.  The JVM does pretty good, quite honestly.
>
>But is it actually interpreting? Because if I generated such code for a 
>statically typed language, then I would first translate to native code, 
>of any quality, since it's going to be faster than interpreting.

Doesn't that reinforce my thesis that these things are much
blurier than all this uninformed talk of a mythical "proper
compiler" would lead one to believe?

	- Dan C.

Back to comp.unix.programmer | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Re: Command Languages Versus Programming Languages Bozo User <anthk@disroot.org> - 2024-09-30 20:04 +0000
  Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 21:04 +0000
    Re: Command Languages Versus Programming Languages usuario <anthk@disroot.org> - 2024-10-01 20:18 +0000
      Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-02 07:10 +0000
        Re: Command Languages Versus Programming Languages usuario <anthk@disroot.org> - 2024-10-02 12:52 +0000
          Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-02 16:00 +0000
  Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-09 22:25 +0100
    Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-10 08:38 +0000
      Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 16:09 +0100
        Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-10 15:34 +0000
          Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 17:55 +0100
            Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-10-10 19:14 +0000
              Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 21:31 +0100
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-11 00:09 +0100
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 15:47 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 15:15 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-11 15:45 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 15:59 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-11 16:28 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:39 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-12 13:53 +0000
                Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-10-12 14:50 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-12 15:32 +0000
                Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-10-12 15:51 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-12 16:36 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:18 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 14:29 +0200
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:03 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 16:21 +0200
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:56 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 13:43 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:54 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 17:17 +0200
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 15:30 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 16:02 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 18:28 +0200
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:10 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 01:16 +0200
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 01:45 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:13 +0200
                Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 07:47 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:27 +0200
                Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 23:25 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 21:03 +0000
                Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 23:26 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:23 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:36 +0200
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-14 14:58 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 14:59 +0000
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-14 17:23 +0100
                Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-10-15 13:27 +0200
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-15 15:18 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 21:04 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:15 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:25 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-14 13:38 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 14:47 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-14 14:53 +0000
                Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-10-14 17:27 +0200
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 17:55 +0200
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 17:43 +0200
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:09 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:08 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-13 15:08 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 15:52 +0000
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-13 17:20 +0100
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:29 +0000
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-14 01:20 +0100
                Re: On overly rigid definitions (was Re: Command Languages Versus Programming Languages) cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-14 00:58 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-13 15:02 +0000
                Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-10-13 16:31 +0000
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-13 20:06 +0100
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:30 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-11 16:37 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 19:01 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:40 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 20:58 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:42 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-12 14:37 +0100
                Re: Command Languages Versus Programming Languages Christian Weisgerber <naddy@mips.inka.de> - 2024-10-12 17:49 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:20 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-13 21:25 +0100
                Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-12 20:50 +0100
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 21:25 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:22 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 20:33 +0000
            Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-11 00:07 +0100
              Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 16:15 +0100
            Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 08:17 +0000
              Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 19:37 +0100
          Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 01:33 +0000
        Re: Command Languages Versus Programming Languages Eric Pozharski <apple.universe@posteo.net> - 2024-10-12 16:39 +0000
          Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:19 +0000
            Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 14:55 +0200
            Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-13 21:33 +0100
              Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:28 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-14 11:38 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 11:05 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-14 16:04 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 15:39 +0000
            Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 20:34 +0000
      Re: Command Languages Versus Programming Languages Sebastian <sebastian@here.com.invalid> - 2024-11-11 07:31 +0000
        Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-11 10:06 +0000
          Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-11 08:28 -0300
            Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-11-11 16:21 +0000
          Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-11 20:55 +0000
          Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:14 +0100
            Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 09:21 +0000
              Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:31 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 09:53 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 15:05 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 15:09 +0000
              Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-12 13:47 -0300
        Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-11 21:24 +0000
          Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:23 +0100
            Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-12 13:50 -0300
            Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-12 20:29 +0000
          Re: Command Languages Versus Programming Languages merlyn@stonehenge.com (Randal L. Schwartz) - 2024-11-19 18:43 -0800
            Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 04:34 +0000
            Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 08:21 +0000
              Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 11:51 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 11:30 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 16:38 +0100
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 16:38 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 17:54 +0000
                Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-20 10:03 -0800
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:18 +0000
                Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-21 07:56 -0800
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-21 14:13 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 16:06 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:13 +0000
                Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-21 07:58 -0800
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 17:50 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-21 14:40 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 15:07 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 13:30 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:41 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:52 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:18 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 17:35 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:43 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:43 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:17 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 17:48 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 18:12 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 18:48 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:05 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 19:24 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:46 +0000
                Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 17:26 -0500
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 23:06 +0000
                Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 22:49 -0500
                [OT] Thunderbird Reply-button (was Re: <subject that has now for long nothing to do with the OP>) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 05:26 +0100
                Re: [OT] Thunderbird Reply-button (was Re: <subject that has now for long nothing to do with the OP>) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 00:04 -0500
                Re: [OT] Thunderbird Reply-button Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 06:09 +0100
                Re: [OT] Thunderbird Reply-button James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 09:24 -0500
                Re: [OT] Thunderbird Reply-button Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 20:14 +0100
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 13:53 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-22 18:14 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-22 18:22 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 18:30 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 18:59 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:15 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 19:26 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:51 +0000
                Re: Command Languages Versus Programming Languages mas@a4.home - 2024-11-21 15:46 +0000
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-21 16:08 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:31 +0000
                Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-11-21 17:53 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:19 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 14:14 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:27 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 21:14 +0000
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 22:09 +0000
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 23:10 +0000
                Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 17:16 -0500
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 22:34 +0000
                Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 23:44 -0500
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 14:05 +0000
                Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 10:22 -0500
                Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 16:38 +0000
                Re: Command Languages Versus Programming Languages kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-27 13:59 +0000
                Open Source does not mean easily re-compile-able (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-12-27 14:35 +0000
                Re: Open Source does not mean easily re-compile-able Richard Kettlewell <invalid@invalid.invalid> - 2024-12-27 14:56 +0000
                Re: Open Source does not mean easily re-compile-able gazelle@shell.xmission.com (Kenny McCormack) - 2024-12-27 16:14 +0000
                Re: Open Source does not mean easily re-compile-able Salvador Mirzo <smirzo@example.com> - 2024-12-27 15:07 -0300
                Re: Open Source does not mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-27 23:09 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-27 23:22 +0000
                Re: Open Source does not mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-28 00:44 +0100
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-27 23:56 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-28 00:11 +0000
                Re: Open Source does not mean easily re-compile-able Salvador Mirzo <smirzo@example.com> - 2024-12-27 21:22 -0300
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-28 19:48 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-28 20:30 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-28 21:07 +0000
                Re: Open Source does not mean easily re-compile-able Muttley@dastardlyhq.com - 2024-12-29 09:50 +0000
                Why TF? (Was: Open Source does not mean easily re-compile-able) gazelle@shell.xmission.com (Kenny McCormack) - 2024-12-29 10:33 +0000
                Re: Why TF? (Was: Open Source does not mean easily re-compile-able) Muttley@dastardlyhq.com - 2024-12-29 10:38 +0000
                Re: Why TF? (Was: Open Source does not mean easily re-compile-able) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-29 21:45 +0100
                Re: Why TF? Richard Kettlewell <invalid@invalid.invalid> - 2024-12-29 23:01 +0000
                Re: Why TF? (Was: Open Source does not mean easily re-compile-able) Muttley@dastardlyhq.com - 2024-12-30 09:35 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-29 13:07 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-29 14:09 +0000
                Re: Open Source does not mean easily re-compile-able James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-12-29 16:41 -0500
                Re: Open Source does not mean easily re-compile-able Eric Pozharski <apple.universe@posteo.net> - 2024-12-29 17:56 +0000
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-29 18:59 +0000
                Re: Open Source does not mean easily re-compile-able Salvador Mirzo <smirzo@example.com> - 2024-12-29 22:19 -0300
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-30 19:31 +0000
                Re: Open Source does not mean easily re-compile-able Salvador Mirzo <smirzo@example.com> - 2024-12-30 18:10 -0300
                Re: Open Source does not mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-30 23:11 +0000
                Re: Open Source does not mean easily re-compile-able Paul <nospam@needed.invalid> - 2025-01-02 03:40 -0500
                Re: Open Source does not mean easily re-compile-able scott@slp53.sl.home (Scott Lurndal) - 2025-01-02 16:29 +0000
                Re: Open Source does not mean easily re-compile-able Paul <nospam@needed.invalid> - 2025-01-02 19:36 -0500
                Re: Open Source does not mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-03 02:55 +0000
                Re: Open Source does not mean easily re-compile-able scott@slp53.sl.home (Scott Lurndal) - 2025-01-03 18:15 +0000
                Re: Open Source does not mean easily re-compile-able Muttley@dastardlyhq.com - 2025-01-04 10:12 +0000
                OT: Windows (Was: Re: Open Source does not mean easily re-compile-able) Salvador Mirzo <smirzo@example.com> - 2025-01-04 08:31 -0300
                Re: OT: Windows (Was: Re: Open Source does not mean easily re-compile-able) Muttley@dastardlyhq.com - 2025-01-04 11:40 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily re-compile-able) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-04 22:13 +0000
                Re: OT: Windows Salvador Mirzo <smirzo@example.com> - 2025-01-04 19:17 -0300
                Re: OT: Windows Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-05 00:47 +0000
                Re: OT: Windows Salvador Mirzo <smirzo@example.com> - 2025-01-09 22:27 -0300
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@dastardlyhq.com - 2025-01-05 16:40 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-05 17:14 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-05 21:09 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-06 08:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-06 14:08 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-06 14:21 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 15:05 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-06 15:55 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 16:46 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-01-06 12:42 -0500
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-06 18:16 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Rainer Weikusat <rweikusat@talktalk.net> - 2025-01-06 18:24 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 18:52 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 08:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 13:18 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 14:05 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 14:14 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 15:13 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 15:35 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 15:53 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 16:10 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 17:01 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 17:23 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 08:23 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-08 12:19 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 13:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily gazelle@shell.xmission.com (Kenny McCormack) - 2025-01-07 17:16 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 17:40 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily kalevi@kolttonen.fi (Kalevi Kolttonen) - 2025-01-06 17:53 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-06 20:28 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 20:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily gazelle@shell.xmission.com (Kenny McCormack) - 2025-01-06 20:38 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Nicolas George <nicolas$george@salle-s.org> - 2025-01-07 00:49 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-07 02:14 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Nicolas George <nicolas$george@salle-s.org> - 2025-01-07 08:59 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-07 14:59 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-08 02:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-08 03:23 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Nicolas George <nicolas$george@salle-s.org> - 2025-01-08 07:52 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-08 12:21 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Nicolas George <nicolas$george@salle-s.org> - 2025-01-08 14:01 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-08 14:41 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 15:05 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 13:59 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Nicolas George <nicolas$george@salle-s.org> - 2025-01-07 15:54 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 15:56 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-08 02:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 08:27 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 16:17 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Rainer Weikusat <rweikusat@talktalk.net> - 2025-01-07 16:13 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 17:01 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 08:37 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-06 15:22 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-06 16:00 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-06 16:39 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 08:34 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 14:13 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 15:11 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 16:02 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-07 16:56 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 17:19 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 08:20 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-08 13:00 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 13:40 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-08 16:05 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-01-08 09:55 -0800
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-08 18:38 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Kaz Kylheku <643-408-1753@kylheku.com> - 2025-01-08 20:27 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-07 15:24 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily cross@spitfire.i.gajendra.net (Dan Cross) - 2025-01-07 17:31 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-07 19:09 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Muttley@DastardlyHQ.org - 2025-01-08 08:26 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-09 04:39 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-06 20:27 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 20:36 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-01-06 20:26 +0000
                Re: OT: Windows (Was: Re: Open Source does not mean easily scott@slp53.sl.home (Scott Lurndal) - 2025-01-06 15:02 +0000
                Re: Open Source does not mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-28 19:27 +0100
                Re: Open Source does not mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-28 23:03 +0000
                Re: Open Source does mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-28 02:07 +0000
                Re: Open Source does mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-28 19:40 +0100
                Re: Open Source does mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-28 23:00 +0000
                Re: Open Source does mean easily re-compile-able kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-28 23:32 +0000
                Re: Open Source does mean easily re-compile-able Grant Taylor <gtaylor@tnetconsulting.net> - 2024-12-28 19:02 -0600
                Re: Open Source does mean easily re-compile-able Paul <nospam@needed.invalid> - 2024-12-28 21:12 -0500
                Re: Open Source does mean easily re-compile-able Muttley@dastardlyhq.com - 2024-12-29 09:54 +0000
                Re: Open Source does mean easily re-compile-able Paul <nospam@needed.invalid> - 2024-12-29 07:39 -0500
                A herd of elephants (Was: Open Source does mean easily re-compile-able) gazelle@shell.xmission.com (Kenny McCormack) - 2024-12-29 14:32 +0000
                Re: A herd of elephants (Was: Open Source does mean easily re-compile-able) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-29 22:03 +0100
                Re: A herd of elephants (Was: Open Source does mean easily re-compile-able) Paul <nospam@needed.invalid> - 2024-12-29 19:49 -0500
                Re: Open Source does mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-29 21:55 +0100
                Re: Open Source does mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-29 22:07 +0100
                Re: Open Source does not mean easily re-compile-able James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-12-28 14:26 -0500
                Re: Open Source does not mean easily re-compile-able Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-29 21:10 +0100
                Re: Open Source does not mean easily re-compile-able Paul <nospam@needed.invalid> - 2024-12-27 13:11 -0500
                Re: Open Source does mean easily re-compile-able Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-27 23:11 +0000
                Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-12-27 14:56 +0000
                Re: Command Languages Versus Programming Languages kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-12-27 23:22 +0000
                Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-12-27 07:43 -0800
                Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-12-27 17:39 +0000
                Re: Command Languages Versus Programming Languages Paul <nospam@needed.invalid> - 2024-12-27 13:15 -0500
                Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-12-27 19:14 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-12-28 00:38 +0100
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:14 +0100
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 11:56 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 20:33 +0100
                Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-21 19:12 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-22 10:09 +0000
                Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-22 18:18 +0000
                Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-11-23 11:40 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:17 +0100
                Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-22 18:19 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 20:20 +0100
              Re: Command Languages Versus Programming Languages Ed Morton <mortonspam@gmail.com> - 2024-11-20 05:46 -0600
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 12:27 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 21:43 +0000
                Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:15 +0000
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-21 22:05 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:47 +0100
                Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 20:41 +0000
                Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 16:53 +0100
                Re: Command Languages Versus Programming Languages Ed Morton <mortonspam@gmail.com> - 2024-11-23 18:17 -0600
              Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 12:21 +0000
                Re: Command Languages Versus Programming Languages merlyn@stonehenge.com (Randal L. Schwartz) - 2024-11-21 05:38 -0800
                Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:01 +0000

csiph-web