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


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

Re: GIMP 3.0.0-RC1

Path csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From rbowman <bowman@montana.com>
Newsgroups comp.os.linux.misc, comp.os.linux.advocacy
Subject Re: GIMP 3.0.0-RC1
Date 12 Feb 2025 20:47:38 GMT
Lines 43
Message-ID <m14fnaFflhnU3@mid.individual.net> (permalink)
References <vkjmdg$30kff$1@dont-email.me> <vl93dl$3vkun$1@dont-email.me> <vl9449$3vo6h$3@dont-email.me> <vl9aov$pp7$1@dont-email.me> <vla4hr$5n4v$1@dont-email.me> <vlblqj$harb$1@dont-email.me> <lttopaFoh2cU8@mid.individual.net> <vle8uk$12sii$2@dont-email.me> <c686fb74-4fac-0809-7005-417c76ee0e3b@example.net> <nbReP.633803$oR74.271654@fx16.iad> <NnVeP.44028$vfee.11890@fx45.iad> <vo6ubb$3ue2q$2@dont-email.me> <RhOdnY5Kb8vulDr6nZ2dnZfqnPudnZ2d@earthlink.com> <vo7lp6$25uo$2@dont-email.me> <655acbf6-05e5-69ff-8a44-9f7075aafa2e@example.net> <ddNpP.567620$iNI.244105@fx14.iad> <m0pqs3ForauU2@mid.individual.net> <g9qcnUmy1pxdrTX6nZ2dnZfqnPqdnZ2d@earthlink.com> <m0r59mFrbnU1@mid.individual.net> <yn0qP.587031$iNI.359829@fx14.iad> <VtWdnaJY5fz99zT6nZ2dnZfqnPudnZ2d@earthlink.com> <20250210093054.00001375@gmail.com> <vofgo6$1p8fn$1@dont-email.me> <KwSdnd_yRPwhvjH6nZ2dnZfqnPidnZ2d@earthlink.com> <20250212081704.00003ce1@gmail.com> <slrnvqq09r.38buj.candycanearter07@candydeb.host.invalid>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding 8bit
X-Trace individual.net ywX+Cj7DPiLKS9NxBn1upQWH/sV9w/aW7yby2+krc/KpVGQggN
Cancel-Lock sha1:HQ0rv50ipwXlg74PPL0KOvPp6Vo= sha256:JODm8EHbhaWnq1W3gMewORI6SHNk4Z1U+S0KtPu946o=
User-Agent Pan/0.160 (Toresk; )
Xref csiph.com comp.os.linux.misc:65464 comp.os.linux.advocacy:685742

Cross-posted to 2 groups.

Show key headers only | View raw


On Wed, 12 Feb 2025 20:20:04 -0000 (UTC), candycanearter07 wrote:

> John Ames <commodorejohn@gmail.com> wrote at 16:17 this Wednesday (GMT):
>> On Tue, 11 Feb 2025 23:29:43 -0500 "WokieSux282@ud0s4.net"
>> <WokieSux283@ud0s4.net> wrote:
>>
>>> Nothing wrong, or unique, about fixed-size arrays. You don't want them
>>> for some stuff, do want them for other stuff. CAN elim a lot of
>>> range-checking code.
>>
>> Nothing wrong with fixed-size arrays as a general concept, no. Treating
>> the size as *part of the type specification* so that passing ARRAY
>> [1..15] OF CHAR to a function expecting ARRAY [1..10] OF CHAR yields a
>> type mismatch is what's utterly demented; a true Wirth original, that.
>>
>> I have never yet heard a sensible case made for a language where array
>> sizes are known, but no FOR EACH IN (x) construct is provided. Doing it
>> C's way at least offers you flexibility and performance in exchange for
>> the risk of shooting yourself in the foot; offering a way to iterate
>> transparently across arrays of arbitrary size at least gives you safety
>> and convenience in exchange for the performance penalty of bounds-
>> checking. Wirth's approach offers the worst of both worlds, for no
>> material gain whatsoever - absolutely bonkers.
> 
> 
> If you really need to, you can also pass by pointer?

Yes. It was coated with syntactic sugar in C++ but it's often convenient 
to malloc/calloc an array and pass around the pointer. If you run out of 
room you can then realloc. 

There are several ways to shoot yourself in the foot if you're 
inexperienced. A common problem is not realizing the void* pointer 
returned by realloc may (usually) not be the same as the original pointer 
so if you're hanging onto references of where the data used to be you'll 
probably segfault (sooner or later).

Like John said newer languages try to protect you from yourself but there 
is no magic. Either the programmer is keeping track efficiently or the 
language is adding extra code to do the job.


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