Groups | Search | Server Info | Login | Register
Groups > comp.unix.programmer > #15628
| From | John Ames <commodorejohn@gmail.com> |
|---|---|
| Newsgroups | comp.unix.shell, comp.unix.programmer, comp.lang.misc |
| Subject | Re: Command Languages Versus Programming Languages |
| Date | 2024-04-01 11:15 -0700 |
| Organization | A noiseless patient Spider |
| Message-ID | <20240401111552.00006ddc@gmail.com> (permalink) |
| References | <uu54la$3su5b$6@dont-email.me> <87edbtz43p.fsf@tudado.org> <types-20240401151149@ram.dialup.fu-berlin.de> |
Cross-posted to 3 groups.
On 1 Apr 2024 14:16:33 GMT ram@zedat.fu-berlin.de (Stefan Ram) wrote: > In a non-scripting programming language, the types often are > based on hardware, like "16 bit integer", and typing is often > handled in a static and rather strict way. Higher types, like > strings whose size can change at run time, are often missing. Notwithstanding the fuzziness granted by the use of "often" here, this doesn't seem like a terribly accurate assessment. Lots of compiled/ "non-scripting" languages - *however* you define that - have dynamic strings; even C++ provides that as part of the standard library (admittedly, not as a basic language construct, but that's C for you - *every* data structure is essentially pointers in a trenchcoat.) AFAIK it's much rarer to *lack* that capability; C does, for aforementioned reasons (although you can certainly roll your own,) O.G. Pascal did (as a hideous misfeature,) probably a few other current systems languages... but not many spring to mind. It's also not terribly true that "non-scripting" languages are pre- dominantly statically-typed. It's more common, certainly, but there are still a number of compiled applications languages with some kind of dynamic support. And while the division of number types into floating- point and integer is very frequently the case, most language standards don't specify word sizes that strictly (even in C, stdint.h wasn't introduced until C99 - which lead to headaches of its own, as anyone who's tried to run old code that makes assumptions about sizeof(int) on targets that break those assumptions can attest.) Plenty of "non- scripting" languages include or can be extended with support for arbitrary bignum types, as well. > Scripting languages handle the memory for you. In a scripting > language, you cannot call "malloc" to obtain the obligation to > free this piece of memory exactly once in the future. They are > garbage collected. And while this is pretty true of scripting languages, it doesn't make for a good point-of-contrast with "non-scripting" languages; *piles* of them include support for automatic memory management, and some (outside of the C family) don't even include facilities for doing it "by hand." Overall, this seems like a very narrow and C-centric view of programming language design - and while C is definitely *my* language-of-choice for application development,* let's not pretend it's the absolute be-all and end-all, as if there *could* be such a thing in a field as vast and diverse as this! * (Funnily enough, for a lot of "scripting" type jobs, my go-to is actually a compiled language - FreeBasic.)
Back to comp.unix.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-29 01:14 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-03-29 03:10 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-29 09:55 +0000
Re: Command Languages Versus Programming Languages Josef Möllers <josef@invalid.invalid> - 2024-03-29 12:10 +0100
Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-03-29 11:40 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-29 12:02 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-29 17:09 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-29 17:18 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-29 17:25 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-30 10:16 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 11:35 +0100
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-30 18:10 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-01 08:31 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-03-30 19:27 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-03-29 08:44 -0700
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-29 16:02 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-03-29 09:10 -0700
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-29 17:13 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-29 17:20 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-29 17:58 +0000
Re: Command Languages Versus Programming Languages "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2024-03-29 14:51 -0400
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-03-29 16:38 -0300
Re: Command Languages Versus Programming Languages "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2024-03-29 18:32 -0400
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 00:14 +0100
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-03-30 10:19 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-30 18:46 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-01 08:32 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-04-01 06:49 -0300
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-01 14:47 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-01 18:25 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-04-01 21:26 -0300
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-02 00:57 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-01 18:18 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-02 03:01 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-04-02 05:28 -0400
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-03 00:25 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-04-02 15:20 -0300
Re: Command Languages Versus Programming Languages gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-02 18:58 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-02 18:59 +0000
Re: Command Languages Versus Programming Languages "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-04-02 22:05 +0200
Too much? (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-02 20:16 +0000
Re: Too much? (Was: Command Languages Versus Programming Languages) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-02 20:20 +0000
Re: Too much? (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-02 20:36 +0000
Re: Too much? (Was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-03 09:38 +0200
Re: Too much? (Was: Command Languages Versus Programming Languages) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-04-03 19:06 -0400
Football (Was: Too much? (Was: Command Languages Versus Programming Languages)) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-03 23:22 +0000
Re: Too much? (Was: Command Languages Versus Programming Languages) Chris Elvidge <chris@mshome.net> - 2024-04-04 14:50 +0100
Re: Too much? (Was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-04 14:10 +0000
Re: Too much? (Was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-04 21:47 +0200
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-04-02 19:15 -0400
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-03 00:23 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-04-03 07:18 -0300
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-02 16:18 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-02 16:33 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-03 00:23 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-03 09:50 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-03 07:53 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-03 07:53 -0700
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-03 09:00 -0700
Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-04-03 17:16 +0100
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-04 08:13 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-04 23:29 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-05 09:17 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-05 12:40 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-05 15:09 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-06 01:10 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-05 23:11 +0000
Re: Command Languages Versus Programming Languages Alan Bawden <alan@csail.mit.edu> - 2024-04-05 19:35 -0400
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-06 00:25 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-08 08:20 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-08 22:14 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-08 15:58 -0700
Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-04-09 08:47 +0100
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-09 10:07 +0200
Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-04-09 18:57 +0100
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-09 10:11 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-09 08:38 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-09 15:22 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-10 00:32 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-10 01:35 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-08 23:02 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-06 01:01 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-06 15:44 +0200
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-06 15:03 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-06 01:10 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-06 09:00 +0000
Re: Command Languages Versus Programming Languages Alan Bawden <alan@csail.mit.edu> - 2024-04-07 06:04 -0400
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-08 07:47 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-08 14:35 +0200
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-08 14:33 +0000
Words to the wise (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-08 15:20 +0000
Re: Words to the wise (Was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-08 15:22 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-08 19:32 +0000
Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-08 19:44 +0000
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-09 09:24 +0200
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) D <nospam@example.net> - 2024-04-09 10:39 +0200
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-09 15:30 +0000
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-09 21:48 +0200
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-09 20:20 +0000
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-10 00:31 +0000
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) Chris Elvidge <chris@mshome.net> - 2024-04-10 11:41 +0100
Re: Phrases that should be banned on Usenet (Was: Command Languages Versus Programming Languages) candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-10 15:40 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-09 07:45 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-09 07:57 +0000
Re: Command Languages Versus Programming Languages Jim Jackson <jj@franjam.org.uk> - 2024-04-09 19:51 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-10 07:32 +0000
Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-10 12:46 +0000
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-10 15:24 +0200
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-10 15:13 +0000
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-10 16:21 +0000
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-11 11:19 +0200
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-11 07:26 +0000
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) John Ames <commodorejohn@gmail.com> - 2024-04-11 07:51 -0700
Re: Keith's favorite sub-topic [News Flash: Moron tries to defend his sexism online] (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-11 08:57 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-10 17:25 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-11 07:28 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-09 10:02 +0200
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-09 15:01 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-09 15:09 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-09 15:30 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-09 08:40 -0700
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-09 16:01 +0000
[meta] Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-08 14:00 +0200
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-10 00:36 -0700
Re: Command Languages Versus Programming Languages gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-10 12:05 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-05 18:30 +0200
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-05 20:47 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-05 23:08 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-06 18:57 +0200
Re: Command Languages Versus Programming Languages Andy Walker <anw@cuboid.co.uk> - 2024-04-06 19:32 +0100
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-06 23:54 +0200
Re: Command Languages Versus Programming Languages Andy Walker <anw@cuboid.co.uk> - 2024-04-07 14:43 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-07 21:05 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-08 14:53 +0200
Re: Command Languages Versus Programming Languages Andy Walker <anw@cuboid.co.uk> - 2024-04-10 10:10 +0100
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-10 14:43 +0200
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-10 19:03 +0200
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-07 14:45 -0700
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-08 14:11 +0200
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-07 15:47 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-06 15:07 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-06 22:57 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-07 01:31 +0200
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-07 01:47 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-06 23:57 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-06 20:41 -0700
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-06 08:58 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-06 23:49 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-04-08 07:44 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-08 22:16 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-06 18:49 +0200
Re: Command Languages Versus Programming Languages Sebastian <sebastian@here.com.invalid> - 2024-08-06 08:04 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-06 23:34 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-07 13:43 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-08-08 07:33 +0000
Re: Command Languages Versus Programming Languages Andreas Eder <a_eder_muc@web.de> - 2024-08-08 17:25 +0200
Trading insults about Lisp coding styles (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-08-08 16:05 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-08 23:41 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-09 00:07 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-03 18:30 +0200
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-03 10:19 -0700
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-04-03 21:33 +0200
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-03 12:58 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-01 21:41 +0000
Re: Command Languages Versus Programming Languages Andreas Eder <a_eder_muc@web.de> - 2024-04-01 17:11 +0200
Re: Command Languages Versus Programming Languages Christian Weisgerber <naddy@mips.inka.de> - 2024-03-29 18:12 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-03-30 19:32 +0100
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-30 20:19 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-03-29 17:12 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-03-29 08:09 -0300
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-29 21:06 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-03-29 21:24 -0300
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-30 01:11 +0000
Re: Command Languages Versus Programming Languages Johanne Fairchild <jfairchild@tudado.org> - 2024-03-29 21:17 -0300
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 11:28 +0100
Re: Command Languages Versus Programming Languages Christian Weisgerber <naddy@mips.inka.de> - 2024-03-30 13:37 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-03-30 19:25 +0000
Re: Command Languages Versus Programming Languages Christian Weisgerber <naddy@mips.inka.de> - 2024-03-30 21:48 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-01 11:15 -0700
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-01 19:42 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-01 13:25 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-02 00:20 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-04-02 05:13 -0400
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-01 13:44 -0700
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-01 14:30 -0700
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-01 22:40 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-02 15:30 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-02 08:43 -0700
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-02 16:09 +0000
Re: Command Languages Versus Programming Languages candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-02 18:50 +0000
Re: Command Languages Versus Programming Languages Richard Kettlewell <invalid@invalid.invalid> - 2024-04-03 15:45 +0100
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-04-03 16:56 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-01 15:56 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-02 00:19 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-01 21:43 +0000
Re: Command Languages Versus Programming Languages Javier <invalid@invalid.invalid> - 2024-04-07 00:01 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-07 02:02 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-06 20:46 -0700
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-12 15:55 +0200
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-08 07:55 -0700
Re: Command Languages Versus Programming Languages Javier <invalid@invalid.invalid> - 2024-04-08 17:54 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-08 22:21 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-12 15:48 +0200
I did not inhale (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-12 14:13 +0000
Re: I did not inhale (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-12 14:15 +0000
Re: I did not inhale (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-15 14:28 +0200
Re: I did not inhale (Was: Command Languages Versus Programming Languages) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-12 16:52 +0000
Re: I did not inhale Johanne Fairchild <jfairchild@tudado.org> - 2024-04-12 20:52 -0300
Re: I did not inhale Johanne Fairchild <jfairchild@tudado.org> - 2024-04-13 08:17 -0300
Re: I did not inhale kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-15 19:48 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-15 23:54 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-16 01:30 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-16 15:02 +0000
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-16 09:37 -0700
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-17 11:18 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-17 09:01 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-17 12:58 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-17 21:51 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 10:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 08:30 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 12:19 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 15:45 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 18:13 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-18 16:52 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 20:07 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-18 23:18 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 08:31 +0000
Re: Python (was Re: I did not inhale) Richard Kettlewell <invalid@invalid.invalid> - 2024-08-18 22:15 +0100
Re: Python (was Re: I did not inhale) gazelle@shell.xmission.com (Kenny McCormack) - 2024-08-18 08:55 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 09:21 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-18 16:46 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 20:11 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-19 04:54 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 09:09 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-19 17:40 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-18 23:14 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 09:37 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 10:40 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 12:39 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 14:59 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 17:35 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 15:56 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 21:09 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 08:52 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-20 07:21 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 10:15 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:00 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 09:44 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 10:27 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 15:09 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 17:20 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 00:59 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-21 10:07 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:42 +0000
Re: Python (was Re: I did not inhale) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-20 09:59 -0400
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:12 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-19 13:14 -0700
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-19 13:30 -0700
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-20 07:22 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-19 08:45 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 13:03 +0200
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-19 13:28 -0700
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 23:43 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-19 23:03 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 08:57 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-20 07:22 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-20 10:25 +0200
Re: Python (was Re: I did not inhale) vallor <vallor@cultnix.org> - 2024-08-21 06:10 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 06:45 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 08:17 +0000
Re: Python (was Re: I did not inhale) Eric Pozharski <apple.universe@posteo.net> - 2024-08-18 20:47 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-18 16:59 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 15:23 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-18 16:55 +0200
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-18 12:24 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 09:44 +0200
Re: Python (was Re: I did not inhale) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-20 10:52 -0400
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-20 15:06 -0700
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 14:21 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-20 14:35 +0000
Re: Python (was Re: I did not inhale) Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2024-08-20 14:45 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 16:10 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 21:45 +0200
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 20:56 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 09:26 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 07:36 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 10:26 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 17:27 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 15:40 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 21:15 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 07:42 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-22 09:52 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 08:18 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-22 15:11 +0200
Re: Python (was Re: I did not inhale) Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2024-08-22 13:58 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 14:17 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 11:09 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 10:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 08:21 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-22 09:02 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 12:47 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 00:19 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-23 09:19 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 07:38 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:11 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:43 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 13:00 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 13:30 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 15:28 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-22 16:56 +0100
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-22 16:31 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-22 17:55 +0100
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:38 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:48 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:36 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-22 17:47 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 20:28 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 20:28 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 18:54 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 00:15 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 07:27 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:15 +0200
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-21 08:37 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 21:18 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:05 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-21 08:45 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:42 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-16 14:57 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-16 23:27 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-17 01:01 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-13 21:54 +0000
on Perl (was: Command Languages Versus Programming Languages) Javier <invalid@invalid.invalid> - 2024-04-14 20:41 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-14 22:41 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Blue-Maned_Hawk <bluemanedhawk@invalid.invalid> - 2024-04-15 12:43 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-15 22:12 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) John Ames <commodorejohn@gmail.com> - 2024-04-15 15:29 -0700
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-15 22:58 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-16 10:14 +0200
Re: on Perl (was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-16 08:35 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-16 11:35 +0200
Re: on Perl Christian Weisgerber <naddy@mips.inka.de> - 2024-04-16 10:58 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-16 14:00 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 14:51 +0000
Re: on Perl candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-16 15:10 +0000
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 15:42 +0000
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-17 02:44 +0000
Re: on Perl Andreas Eder <a_eder_muc@web.de> - 2024-04-17 07:34 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 08:05 -0700
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 21:05 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 12:19 -0700
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 21:52 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 13:39 -0700
Re: on Perl Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-18 04:18 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-18 10:30 +0200
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 08:36 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-18 11:31 +0200
Re: on Perl Richard Harnden <richard.nospam@gmail.invalid> - 2024-04-23 14:09 +0100
Back and forth (Was: on Perl) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-23 14:09 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-24 10:04 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-24 08:06 -0700
Re: On Stack-Based Languages (was Re: on Perl) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 07:55 +0000
Re: On Stack-Based Languages (was Re: on Perl) David Brown <david.brown@hesbynett.no> - 2024-04-18 10:37 +0200
Re: On Stack-Based Languages (was Re: on Perl) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 08:44 +0000
Re: On Stack-Based Languages (was Re: on Perl) "James K. Lowden" <jklowden@speakeasy.net> - 2024-04-19 14:16 +0000
Re: On Stack-Based Languages (was Re: on Perl) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-19 21:57 +0000
Re: On Stack-Based Languages (was Re: on Perl) Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2024-04-18 15:00 +0300
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 14:49 +0000
Re: on Perl scott@slp53.sl.home (Scott Lurndal) - 2024-04-16 15:01 +0000
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 15:26 +0000
Re: on Perl Chris Elvidge <chris@mshome.net> - 2024-04-16 16:42 +0100
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 15:43 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-16 08:49 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 15:51 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-16 08:59 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 16:13 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-16 09:18 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-17 08:22 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 07:59 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-17 16:15 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 09:55 -0700
Re: on Perl D <nospam@example.net> - 2024-04-17 23:05 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-18 07:35 +0000
Re: on Perl D <nospam@example.net> - 2024-04-18 11:28 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-18 15:37 +0000
Re: on Perl D <nospam@example.net> - 2024-04-18 20:59 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-19 08:57 +0000
Re: on Perl D <nospam@example.net> - 2024-04-19 22:40 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-20 08:58 +0000
Re: on Perl D <nospam@example.net> - 2024-04-20 12:40 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-20 10:52 +0000
Re: on Perl D <nospam@example.net> - 2024-04-20 21:00 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-18 07:33 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-18 10:16 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-19 08:57 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-19 16:08 -0700
Re: on Perl gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-20 01:48 +0000
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-24 08:36 -0700
Re: on Perl Muttley@dastardlyhq.com - 2024-04-20 08:59 +0000
Re: on Perl gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-16 18:11 +0000
Re: on Perl Muttley@dastardlyhq.com - 2024-04-17 08:23 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 11:36 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-17 10:21 +0000
Re: on Perl gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-16 18:09 +0000
Re: on Perl "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2024-04-16 12:05 -0400
Re: on Perl "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2024-04-16 12:25 -0400
Re: on Perl Christian Weisgerber <naddy@mips.inka.de> - 2024-04-16 19:59 +0000
Re: on Perl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-16 13:36 -0700
Re: on Perl candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-16 16:10 +0000
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-17 02:45 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 11:44 +0200
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 11:30 +0200
Re: on Perl candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-18 15:10 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-18 21:55 +0200
Re: on Perl Javier <invalid@invalid.invalid> - 2024-04-16 20:47 +0000
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-17 03:14 +0000
Re: on Perl Ben Bacarisse <ben.usenet@bsb.me.uk> - 2024-04-17 18:04 +0100
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-17 23:23 +0000
Re: on Perl Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-17 16:59 -0700
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 01:33 +0000
Re: on Perl Rainer Weikusat <rweikusat@talktalk.net> - 2024-04-18 18:09 +0100
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-03-29 13:47 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-29 20:36 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-29 20:59 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 00:14 +0100
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 00:45 +0100
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-29 17:03 -0700
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 01:06 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-29 23:51 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-29 17:08 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-30 01:12 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-29 18:15 -0700
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-03-30 01:21 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 01:30 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-30 01:15 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-29 17:01 -0700
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-03-30 01:49 +0100
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-29 18:00 -0700
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-03-31 20:47 +0000
Re: Command Languages Versus Programming Languages "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-03-30 12:44 +0100
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-03-30 14:28 -0700
Re: Command Languages Versus Programming Languages "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-03-31 22:06 +0200
Re: Command Languages Versus Programming Languages Andreas Kempe <kempe@lysator.liu.se> - 2024-04-14 17:11 +0000
csiph-web