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


Groups > comp.os.linux.misc > #65465

Re: GIMP 3.0.0-RC1

From John Ames <commodorejohn@gmail.com>
Newsgroups comp.os.linux.misc, comp.os.linux.advocacy
Subject Re: GIMP 3.0.0-RC1
Date 2025-02-12 13:21 -0800
Organization A noiseless patient Spider
Message-ID <20250212132107.00001351@gmail.com> (permalink)
References (20 earlier) <20250210093054.00001375@gmail.com> <vofgo6$1p8fn$1@dont-email.me> <KwSdnd_yRPwhvjH6nZ2dnZfqnPidnZ2d@earthlink.com> <20250212081704.00003ce1@gmail.com> <slrnvqq09r.38buj.candycanearter07@candydeb.host.invalid>

Cross-posted to 2 groups.

Show all headers | View raw


On Wed, 12 Feb 2025 20:20:04 -0000 (UTC)
candycanearter07 <candycanearter07@candycanearter07.nomail.afraid>
wrote:

> If you really need to, you can also pass by pointer?

I admit I'm not deeply familiar with this, but AFAICT Pascal pointers
enforce type-safety as defined by the rest of the language, meaning
that (IIUC) you can pass a function that expects a pointer to an ARRAY
[1..10] OF CHAR any given ARRAY [1..10] OF CHAR, but trying to give it
a pointer to an ARRAY [1..15] OF CHAR would still be a type mismatch.

So what do you do, then? Refactor the function to accept a pointer to a
single CHAR? Add individual wrapper functions to decompose arrays of
specific sizes into individual elements, and call the actual function
once per element? What if the function logic can't be serialized across
individual elements?

The whole thing is just braindead. C makes you do all the fancy
footwork yourself if you want to support arrays of arbitrary size, but
it'll at least let you *do* it; other languages like Basic or Python
provide a UBound() function or for-each construct so that you can do
the same thing safely and simply (if at a slight performance penalty.)
Pascal (as Wirth designed it) forces you through all the rigamarole of
the former without giving you the attendant flexibility, even though it
already *knows* the sizes of arrays and could just as easily provide
the latter.

Truly demented, and worthy of a place in the B&D hall-o'-shame all by
itself.

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Re: GIMP 3.0.0-RC1 Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-02-08 06:41 +0000
  Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 02:36 -0500
    Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-08 13:21 +0000
      Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-08 18:59 +0100
        Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-08 18:17 +0000
          Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-08 19:28 +0000
            Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-08 13:41 -0600
              Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:38 +0000
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:23 -0600
            Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 23:07 -0500
              Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 11:41 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-09 20:46 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 07:33 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:08 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 19:27 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:44 +0100
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:04 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 20:28 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:50 +0100
                Re: GIMP 3.0.0-RC1 Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-10 23:14 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 11:58 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 20:03 -0500
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 12:03 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 19:43 +0000
                Business cultures Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-11 20:32 +0000
                Re: Business cultures D <nospam@example.net> - 2025-02-11 22:11 +0100
                Re: Business cultures rbowman <bowman@montana.com> - 2025-02-11 22:15 +0000
                Re: Business cultures rbowman <bowman@montana.com> - 2025-02-11 22:11 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 22:03 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 22:27 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 11:35 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 20:46 -0500
            Re: GIMP 3.0.0-RC1 Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-09 12:28 -0500
              Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-09 18:18 +0000
          Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-08 19:50 +0000
            Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-08 13:55 -0600
              Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-08 14:13 -0600
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:40 +0000
              Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-08 20:16 +0000
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:42 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 22:43 +0100
                Re: GIMP 3.0.0-RC1 not@telling.you.invalid (Computer Nerd Kev) - 2025-02-11 07:23 +1000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:51 +0100
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-11 21:24 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 11:31 +0100
            Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 23:36 -0500
              Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-09 07:54 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-09 03:18 -0500
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 11:50 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-09 18:08 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-09 22:32 -0500
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-09 11:32 +0000
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-09 19:21 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-09 21:54 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-10 09:30 -0800
                Re: GIMP 3.0.0-RC1 Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-11 07:44 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-11 07:53 -0800
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-14 05:10 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 23:29 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-12 08:17 -0800
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-12 20:20 +0000
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 20:47 +0000
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-12 13:21 -0800
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-13 21:40 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 17:09 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-12 14:54 -0800
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-13 04:01 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 23:41 -0500
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-13 11:21 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-13 22:10 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-13 22:17 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-14 09:43 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-14 20:17 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-14 22:51 +0100
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-14 05:20 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-14 09:46 +0100
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-15 23:30 +0000
                Re: GIMP 3.0.0-RC1 c186282 <c186282@nnada.net> - 2025-02-15 21:48 -0500
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-16 11:44 +0100
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-19 20:10 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-16 11:45 +0100
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-13 08:03 -0800
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-13 18:14 +0000
                Re: GIMP 3.0.0-RC1 Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-15 07:34 -0500
                Re: GIMP 3.0.0-RC1 c186282 <c186282@nnada.net> - 2025-02-15 21:35 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-16 03:38 +0000
                Re: GIMP 3.0.0-RC1 Joel <joelcrump@gmail.com> - 2025-02-15 22:51 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-16 04:51 +0000
                Re: GIMP 3.0.0-RC1 c186282 <c186282@nnada.net> - 2025-02-16 01:23 -0500
                Re: GIMP 3.0.0-RC1 Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-13 07:34 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-13 21:10 +0000
                Re: GIMP 3.0.0-RC1 Chris Ahlstrom <OFeem1987@teleworm.us> - 2025-02-15 07:31 -0500
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-11 21:24 +0000
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-11 21:24 +0000
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 22:20 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 20:57 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 02:55 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 23:06 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 06:38 +0000
              Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-09 14:23 -0600
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:45 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 22:44 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-09 22:37 -0500
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-10 07:57 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:15 +0100
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:05 +0100
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-09 21:06 -0600
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-10 08:02 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:18 +0100
              Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-12 15:56 -0600
            Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:39 +0000
              Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 22:41 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 07:38 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:08 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 19:44 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:45 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 01:45 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 12:14 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 19:26 +0000
                Traveling and Travel Planning Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-11 20:10 +0000
                Re: Traveling and Travel Planning rbowman <bowman@montana.com> - 2025-02-11 22:40 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 22:01 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 22:44 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 11:37 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 19:55 +0000
                Re: GIMP 3.0.0-RC1 Rich <rich@example.invalid> - 2025-02-12 19:58 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 22:34 +0100
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-13 03:56 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 22:34 +0100
                Re: GIMP 3.0.0-RC1 Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-12 22:01 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-13 22:00 +0100
                Travel Planning (was: Tasks where AI might be helpful) Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-11 19:59 +0000
                Re: Travel Planning (was: Tasks where AI might be helpful) D <nospam@example.net> - 2025-02-11 22:07 +0100
                Re: Travel Planning (was: Tasks where AI might be helpful) rbowman <bowman@montana.com> - 2025-02-11 22:31 +0000
                Re: Travel Planning (was: Tasks where AI might be helpful) D <nospam@example.net> - 2025-02-12 11:35 +0100
                Re: Travel Planning (was: Tasks where AI might be helpful) Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-12 19:17 +0000
                Re: Travel Planning (was: Tasks where AI might be helpful) rbowman <bowman@montana.com> - 2025-02-12 19:43 +0000
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:35 -0600
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 07:48 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 20:19 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:50 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 20:00 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 03:42 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 00:53 -0500
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 12:01 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 01:23 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 12:10 +0100
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-11 07:55 -0800
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 21:59 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 20:50 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 19:45 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-11 22:04 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 23:42 -0500
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:42 -0600
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:37 -0600
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:30 -0600
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-10 07:54 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:14 +0100
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-11 21:24 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-12 11:33 +0100
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-12 16:00 -0600
                Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:26 -0600
              Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:25 -0600
          Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-08 22:16 +0100
            Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-08 23:41 +0000
              Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 23:42 -0500
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 11:49 +0100
              Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 11:38 +0100
              Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:47 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 22:46 +0100
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-10 07:59 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 12:17 +0100
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-10 19:53 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 22:41 -0500
            Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 23:40 -0500
              Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 11:47 +0100
              Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:49 +0000
                Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-09 22:48 +0100
                Re: GIMP 3.0.0-RC1 Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-09 23:03 +0000
              Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-10 18:40 +0000
            Re: GIMP 3.0.0-RC1 Physfitfreak <physfitfreak@gmail.com> - 2025-02-12 16:03 -0600
        Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-08 19:27 +0000
          Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-08 19:53 +0000
          Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-08 22:19 +0100
            Re: GIMP 3.0.0-RC1 % <pursent100@gmail.com> - 2025-02-08 14:23 -0700
            Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-10 18:40 +0000
              Re: GIMP 3.0.0-RC1 D <nospam@example.net> - 2025-02-10 22:41 +0100
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 19:11 -0500
                Re: GIMP 3.0.0-RC1 Robert Riches <spamtrap42@jacob21819.net> - 2025-02-11 05:04 +0000
                Re: GIMP 3.0.0-RC1 Robert Riches <spamtrap42@jacob21819.net> - 2025-02-11 05:18 +0000
              Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-10 18:31 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-10 15:55 -0800
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 01:59 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 00:23 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 06:46 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 02:04 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-11 19:07 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 20:43 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 02:49 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-11 22:50 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 06:28 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 12:25 -0500
                Re: GIMP 3.0.0-RC1 John Ames <commodorejohn@gmail.com> - 2025-02-12 10:16 -0800
                Re: GIMP 3.0.0-RC1 Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-12 18:40 +0000
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 18:50 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 16:24 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-13 07:35 +0000
                Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-13 11:22 +0000
                Re: GIMP 3.0.0-RC1 CrudeSausage <crude@sausa.ge> - 2025-02-12 09:08 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-12 18:58 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 16:56 -0500
                Re: GIMP 3.0.0-RC1 rbowman <bowman@montana.com> - 2025-02-13 07:22 +0000
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-12 20:20 +0000
                Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-12 17:16 -0500
                Re: GIMP 3.0.0-RC1 candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-14 05:00 +0000
          Re: GIMP 3.0.0-RC1 "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 22:44 -0500
            Re: GIMP 3.0.0-RC1 The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:51 +0000
    (Excessive?) Complexity Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-08 18:57 +0000
      Re: (Excessive?) Complexity The Natural Philosopher <tnp@invalid.invalid> - 2025-02-08 19:31 +0000
        Re: (Excessive?) Complexity "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 23:23 -0500
          Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-09 11:45 +0100
            Re: (Excessive?) Complexity rbowman <bowman@montana.com> - 2025-02-09 19:49 +0000
              Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-09 22:39 +0100
                Re: (Excessive?) Complexity Physfitfreak <physfitfreak@gmail.com> - 2025-02-11 13:21 -0600
              Re: (Excessive?) Complexity Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-02-09 22:43 +0000
            Re: (Excessive?) Complexity The Natural Philosopher <tnp@invalid.invalid> - 2025-02-09 20:56 +0000
              Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-09 22:50 +0100
                Re: (Excessive?) Complexity rbowman <bowman@montana.com> - 2025-02-10 07:50 +0000
                Re: (Excessive?) Complexity The Natural Philosopher <tnp@invalid.invalid> - 2025-02-10 08:35 +0000
                Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-10 12:20 +0100
                Re: (Excessive?) Complexity rbowman <bowman@montana.com> - 2025-02-10 19:02 +0000
                Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-10 12:09 +0100
                Re: (Excessive?) Complexity rbowman <bowman@montana.com> - 2025-02-10 18:58 +0000
                Re: (Excessive?) Complexity D <nospam@example.net> - 2025-02-10 22:42 +0100
          Re: (Excessive?) Complexity Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-02-09 11:32 +0000
            Re: (Excessive?) Complexity rbowman <bowman@montana.com> - 2025-02-09 19:43 +0000
      Re: (Excessive?) Complexity "WokieSux282@ud0s4.net" <WokieSux283@ud0s4.net> - 2025-02-08 22:49 -0500
      Re: (Excessive?) Complexity vjp2.at@at.BioStrategist.dot.dot.com - 2025-02-25 19:34 +0000

csiph-web