Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.misc > #61320
| From | Lawrence D'Oliveiro <ldo@nz.invalid> |
|---|---|
| Newsgroups | comp.os.linux.misc |
| Subject | Re: Joy of this, Joy of that |
| Date | 2024-11-24 22:36 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <vi09pf$2dnuv$1@dont-email.me> (permalink) |
| References | (14 earlier) <vhs3ji$1kb5c$1@dont-email.me> <vhtht6$1s5d5$5@dont-email.me> <vhtplb$1tioh$1@dont-email.me> <vhts55$1tu8n$1@dont-email.me> <vi059n$2cuig$1@dont-email.me> |
On Sun, 24 Nov 2024 21:19:51 +0000, Pancho wrote:
> On 11/24/24 00:31, Lawrence D'Oliveiro wrote:
>>
>> On Sat, 23 Nov 2024 23:48:59 +0000, Pancho wrote:
>>
>>> To be honest, I don't have an idea what classes not being the
>>> implementers of instance behaviour means. Where is instance behaviour
>>> implemented?
>>
>> From further up: “A behavior is the set of methods used by an object
>> to respond to messages”. Since a class itself has no such “behavior”,
>> it doesn’t need to be an instance of anything, unlike Python.
>>
> What?, Classes do have methods, e.g. they should handle a "new" message
> to create a new instance object of that class.
Looking again at that draft spec, “new” is handled as a special case.
If you look at the syntax for a class definition, the initializer
(section 3.4.3) is not defined as a method that handles a message
named “new”, it is just an unnamed block.
This is quite different from Python, where “__new__” is a classmethod,
and you can customize class-instantiation behaviour by defining a
custom method by that name.
This on top of the extra possibilities afforded by metaclasses.
Metaclasses are classes (and hence objects) in their own right, and
have their own method/member definitions.
> The fact that a compiler/interpreter might handle (implementation
> detail) all class behaviour, as it does in C++, doesn't matter. It is
> helpful to think of classes as objects in their own right.
Not really. Consider C++, where templates are handled in a separate
language that only exists at compile time, separate from the regular
language code that executes at run time.
In Python, there is no separate language for generics, since classes
(and functions) are objects, and all object construction happens at
run time.
(Code is generated at compile time, of course; but an object consists
of data as well as a pointer to shared code, and the data is
constructed at run time.)
>>> Yeah, we discussed this in the past. I'm totally unconvinced of the
>>> desirability of complex multiple inheritance linearization.
>>
>> It is useful, for example, for creating enumerations of fixed instances
>> of some particular base class. You inherit from both your particular
>> base class as well as the generic “enum.Enum” base class, to get
>> suitable properties of both.
>>
> Like an interface, IEnumerable (Chsarp), Iterable(Java)? or are you back
> to some special use for Enums.
Here’s one example, a decoder for MagicaVoxel files I was playing with
a while back. An enumeration for the available material properties:
class MATT_PROPS(enum.IntEnum) :
PLASTIC = 0
ROUGHNESS = 1
SPECULAR = 2
IOR = 3
ATTEN = 4
POWER = 5
GLOW = 6
ISTOTALPOWER = 7
@property
def has_value(self) :
return \
self != type(self).ISTOTALPOWER
#end has_value
#end MATT_PROPS
used in decoding and extraction of same:
...if chunk.id == b"MATT" :
chunk.assert_no_children()
if len(chunk.content) < 16 :
raise Failure("MATT chunk initial too short")
#end if
matt_id, matt_type, matt_weight, prop_mask = struct.unpack("<IIfI", chunk.content[:16])
props_present = set(celf.MATT_PROPS(i) for i in range(32) if 1 << i & prop_mask != 0)
value_props = list(i for i in sorted(props_present) if i.has_value)
if len(chunk.content) < 16 + len(value_props) * 4 :
raise Failure("MATT chunk rest too short")
#end if
propvalues = struct.unpack("<" + "f" * len(value_props), chunk.content[16:])
props = dict(zip(value_props, propvalues))
for i in props_present :
if not i.has_value :
props[i] = None
#end if
#end for
self.materials.append \
(
celf.Material
(
id = matt_id,
type = celf.MATT_TYPE(matt_type),
weight = matt_weight,
props = props
)
)
#end if
Back to comp.os.linux.misc | Previous | Next — Previous in thread | Next in thread | Find similar
Joy of this, Joy of that root <NoEMail@home.org> - 2024-11-19 17:09 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 00:18 +0000
Re: Joy of this, Joy of that root <NoEMail@home.org> - 2024-11-20 02:33 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 02:52 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-20 04:46 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-20 03:37 -0500
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-20 15:46 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-20 16:03 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-21 02:20 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-21 08:14 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-21 13:41 +0000
Re: Joy of this, Joy of that Don_from_AZ <djatechNOSPAM@comcast.net.invalid> - 2024-11-21 20:19 -0700
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 05:51 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-22 23:57 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 05:31 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-23 20:23 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-24 02:06 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-24 00:16 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-24 05:14 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-23 11:16 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-23 19:39 +0000
Re: Joy of this, Joy of that Louis Krupp <lkrupp@invalid.pssw.com.invalid> - 2024-11-23 13:46 -0700
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-24 14:33 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 21:57 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-23 20:17 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-24 05:26 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-24 14:37 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-24 14:39 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-24 17:00 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-24 22:07 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 02:12 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 10:55 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-25 12:04 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 22:20 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 23:55 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-26 10:10 +0100
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-26 10:24 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-26 13:17 +0000
Re: Joy of this, Joy of that Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-11-26 09:15 -0500
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-27 09:34 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 18:57 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-26 21:58 +0100
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-27 01:38 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-27 01:40 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-27 10:10 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-27 11:58 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-27 19:12 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-28 09:18 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-25 21:49 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-27 01:39 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-27 22:13 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-27 22:46 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-28 05:46 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-28 02:56 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-28 08:52 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 04:48 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-29 19:32 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-28 21:36 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 05:06 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-29 18:06 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-30 00:16 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-30 06:23 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 06:53 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 09:30 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-30 23:14 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-01 04:19 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 11:21 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-12-01 16:27 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-02 23:28 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 18:41 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-02 00:37 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-01 20:47 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-02 23:57 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 21:27 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-02 23:58 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:51 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:30 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:26 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-05 01:03 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:25 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 01:13 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 07:43 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 10:12 +0100
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-07 02:30 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 22:59 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:32 +0100
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:26 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 22:41 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:29 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 22:40 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-07 04:50 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 10:06 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 23:27 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:40 +0100
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-05 20:49 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 23:33 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-07 07:54 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-29 21:42 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-30 00:19 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-30 06:22 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-01 03:39 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-01 09:03 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 11:08 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-01 20:46 +0000
Re: Joy of this, Joy of that not@telling.you.invalid (Computer Nerd Kev) - 2024-12-02 07:13 +1000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-01 23:26 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-02 01:06 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-28 05:52 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-28 02:47 -0500
Re: Joy of this, Joy of that vallor <vallor@cultnix.org> - 2024-11-25 19:39 +0000
Re: Joy of this, Joy of that Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-11-26 07:09 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 19:31 +0000
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-02 09:02 -0800
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-02 18:55 +0000
Re: Joy of this, Joy of that Lars Poulsen <lars@cleo.beagle-ears.com> - 2024-12-02 23:25 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-03 00:59 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-02 23:23 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-03 00:53 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-24 22:06 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-25 08:03 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 10:58 +0100
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-21 17:25 +0000
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-11-20 08:10 -0800
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-20 16:31 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-20 17:54 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-20 19:02 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-20 21:05 +0000
Re: Joy of this, Joy of that candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-11-20 23:30 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 23:58 +0000
Re: Joy of this, Joy of that candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-11-21 01:50 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-21 02:48 +0000
Re: Joy of this, Joy of that candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-11-22 20:30 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-21 08:09 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-21 10:45 -0500
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-21 23:04 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-21 20:31 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-22 03:54 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-22 01:25 -0500
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-22 18:53 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 21:04 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-22 10:35 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-22 13:37 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-22 19:30 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 21:03 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-23 07:09 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-22 23:07 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 00:44 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-23 01:08 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 01:41 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-23 08:26 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-23 11:25 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 21:36 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-23 23:48 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-24 00:31 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-24 21:19 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-24 22:36 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-24 05:01 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-24 21:29 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-24 22:37 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-25 11:48 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-25 21:47 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 01:43 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 10:53 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 19:42 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 23:21 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 23:37 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-26 10:09 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 19:17 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-26 21:59 +0100
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-02 15:21 -0800
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-12-02 23:28 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 03:46 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-24 19:35 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-25 00:36 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 01:41 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-25 06:47 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 21:50 -0500
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-26 03:00 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-25 10:56 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 21:58 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 04:03 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-26 10:12 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-27 01:58 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-27 10:12 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-27 19:06 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-27 21:26 +0100
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-28 19:59 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-28 21:53 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-27 23:12 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-28 05:54 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-28 02:22 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-28 08:38 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 03:18 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 13:18 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-30 01:18 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-28 11:04 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-28 18:22 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-28 21:52 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 04:24 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 13:22 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 23:42 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 06:25 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 09:28 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 12:02 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-29 18:39 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 23:44 -0500
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 03:21 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 10:29 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 13:24 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-29 18:23 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 21:01 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 22:51 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 00:17 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 11:52 +0100
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-29 22:43 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 09:24 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-29 18:53 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 22:52 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 00:21 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 11:53 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 23:31 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 07:00 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 12:05 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 13:19 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-29 18:57 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-29 21:04 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 22:54 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 00:07 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 22:53 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 00:12 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 09:18 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 12:06 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 18:47 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 21:56 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 01:15 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 11:18 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 18:47 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 22:11 +0100
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-02 13:19 -0800
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 02:21 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 10:04 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:09 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:24 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 01:37 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 11:09 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 18:55 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:59 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 00:35 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:22 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 21:19 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 09:56 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:46 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:24 +0100
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-07 02:30 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:27 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-05 07:55 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:07 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 15:06 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 14:27 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 21:37 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:34 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:16 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 20:50 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:24 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:18 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 14:08 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 14:29 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:49 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 00:42 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:35 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:10 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 14:07 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 14:25 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:47 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:10 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 14:05 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 17:44 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:52 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 01:18 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:24 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 10:44 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 10:42 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 18:38 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 20:57 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 22:15 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-02 02:17 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:16 +0000
Re: Joy of this, Joy of that not@telling.you.invalid (Computer Nerd Kev) - 2024-12-02 07:23 +1000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 10:25 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:17 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:01 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 15:04 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 20:40 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:14 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 15:06 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 14:28 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 21:38 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 03:54 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:39 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:00 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:18 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 20:53 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 00:32 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:07 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:25 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:20 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-04 17:57 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 00:30 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:35 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 19:13 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 22:01 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 11:58 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-02 18:49 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 21:40 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 02:59 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 10:08 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:45 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 18:53 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:21 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 20:55 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 00:24 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:33 +0100
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-04 17:57 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:27 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:21 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 14:09 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 14:29 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:50 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-05 07:57 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 17:50 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:53 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 00:20 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:32 +0100
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:19 +0100
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 11:52 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 18:44 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 21:54 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 01:09 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-01 03:50 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 10:54 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 11:15 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 10:46 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 19:29 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 11:09 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-01 10:36 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 18:32 +0100
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-01 18:49 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 22:11 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 19:13 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 22:14 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-02 01:50 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 10:26 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 10:27 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 15:03 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 14:26 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 21:36 +0100
Re: Joy of this, Joy of that Robert Riches <spamtrap42@jacob21819.net> - 2024-12-04 04:03 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 11:10 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 12:13 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 14:07 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-04 14:27 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:47 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 19:02 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 22:00 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-05 01:51 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:31 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-05 09:36 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 13:17 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 01:51 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 10:11 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:41 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:23 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 19:54 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 21:40 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-07 01:04 -0500
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-07 00:55 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-07 08:17 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:50 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 01:48 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 07:46 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 10:09 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:31 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:18 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 20:51 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:20 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:18 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:12 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-07 02:41 -0500
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-12-07 02:30 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-07 00:32 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-02 10:20 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-02 15:02 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-03 00:30 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 10:13 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:54 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:14 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-03 21:25 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 01:15 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 10:37 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 18:48 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:56 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-04 00:44 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 11:12 +0100
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-04 07:58 -0800
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:52 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-05 01:37 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 07:16 +0000
Re: Joy of this, Joy of that Robert Riches <spamtrap42@jacob21819.net> - 2024-12-06 04:02 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 05:39 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:29 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-05 01:28 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 07:34 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 01:31 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:09 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 20:33 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-07 00:19 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-07 05:37 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 23:43 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-07 05:29 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:43 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-04 18:15 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-04 21:55 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-05 01:42 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-05 07:27 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-06 01:40 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 08:00 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-05 10:30 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-05 07:50 +0000
Re: Joy of this, Joy of that pH <wNOSPAMp@gmail.org> - 2024-12-06 03:29 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 05:25 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 10:00 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:04 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:09 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 19:49 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 21:39 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-06 21:15 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-07 11:24 +0100
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 09:58 +0100
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-06 13:47 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-06 18:24 +0100
Re: Joy of this, Joy of that doctor@doctor.nl2k.ab.ca (The Doctor) - 2024-12-06 17:29 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 19:02 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-03 00:20 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-29 22:50 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-29 23:50 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-30 06:39 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-30 09:29 +0000
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-30 11:57 +0100
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-01 04:11 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 11:21 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-01 18:54 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-03 00:10 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:32 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-12-01 03:54 -0500
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-12-01 11:19 +0100
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-02 12:35 -0800
Re: Joy of this, Joy of that D <nospam@example.net> - 2024-11-28 11:03 +0100
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 02:41 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 02:11 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-24 10:25 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-24 21:23 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 01:46 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 02:41 -0500
Re: Joy of this, Joy of that Richard Kettlewell <invalid@invalid.invalid> - 2024-11-25 09:07 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 22:59 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 04:43 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-26 05:57 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-26 08:49 +0000
Re: Joy of this, Joy of that Rich <rich@example.invalid> - 2024-11-26 05:29 +0000
Re: Joy of this, Joy of that John Ames <commodorejohn@gmail.com> - 2024-12-02 15:43 -0800
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-12-03 10:47 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-12-03 19:23 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 02:33 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-25 19:54 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-25 23:58 -0500
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-23 02:29 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-23 08:52 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-23 11:30 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-23 19:28 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 21:02 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-21 19:48 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-21 23:14 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-21 23:50 +0000
Re: Joy of this, Joy of that "186282@ud0s4.net" <186283@ud0s4.net> - 2024-11-22 01:51 -0500
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-22 10:34 +0000
Re: Joy of this, Joy of that Richard Kettlewell <invalid@invalid.invalid> - 2024-11-22 10:45 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-22 12:30 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-22 18:53 +0000
Re: Joy of this, Joy of that candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-11-22 20:40 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-23 07:09 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 07:44 +0000
Re: Joy of this, Joy of that Pancho <Pancho.Jones@proton.me> - 2024-11-23 09:05 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-23 11:31 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-23 19:16 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 21:48 +0000
Re: Joy of this, Joy of that rbowman <bowman@montana.com> - 2024-11-23 19:47 +0000
Re: Joy of this, Joy of that Richard Kettlewell <invalid@invalid.invalid> - 2024-11-23 10:16 +0000
Re: Joy of this, Joy of that The Natural Philosopher <tnp@invalid.invalid> - 2024-11-23 11:34 +0000
Re: Joy of this, Joy of that Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-11-23 19:16 +0000
Re: Joy of this, Joy of that Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-23 21:45 +0000
(Thread has 552 articles, showing 500 — browse group in flat view)
csiph-web