*
:
> Ted wrote:
>> Doesn't newgroup moderation need a check placed on it to ensure that it doesn't
>> become censorship?
>
> There is : unmoderated groups. Censorship deletes the message,
> moderation
> only determines which messages can go where.
>
>> Instead of dropping posts, shouldn't they just be retitled to allow
>> group readers the choice of whether to read or filter the moderated posts? The other
>> possibility is to create another/other groups that have the moderated posts put in them
>> (by moderators or posters): comp.moderatedposts, for example.
>
> Why do you want to put all moderated articles in one group? I'd like to
> keep the
> moderated C++ posts in clc++m. Much easier. As to rejected messages,
> I'd say
> the author (and not all possible readers) should decide what the next
> best thing
> is - rewrite, repost to another (moderated) group where it's on-topic,
> or simply
> forget it.
Some rejections are for off-topicality, some are for "heat", and some
are like the one below, where my reply to you was rejected:
Message-ID: <>
Newsgroups: comp.lang.c++,comp.lang.c++.moderated
From: "Alf P. Steinbach" <>
Subject: Re: Iteration with unsigned integral type
Organization: unknown
References: < .com>
<>
<dvpuj1$jpj$>
<>
< .com>
X-Original-Date: Thu, 23 Mar 2006 16:55:36 +0100
X-Submission-Address: c++-
{ It's a witty reply

, but I'm afraid it doesn't actually add
anything technical to the tread. -mod }
*
:
> > Alf P. Steinbach wrote:
> > if you want to enumerate all bit patterns that can occur for a
>> >> size_t, or for any integral type T, in a single loop, then you
>> >> need some
>> >> loop state in addition to a T, whether T is int or char or size_t
>> >> or...
> >
> > No, you dont:
> >
> > unsigned int i = 0;
> > do {
> > foo(i);
> > } while (0 != ++i);
> >
> > The only case in which you need additional loop state is when you
> > use a
> > test-first
> > loop (as that must support lengths [0..N] inclusive, i.e. N+1 states)
Oink.
(That means, I sit corrected.)
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?