Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Keith Thompson <kst-u@mib.org> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: Aargh! Don't do this! |
| Date | 2016-02-25 17:44 -0800 |
| Organization | None to speak of |
| Message-ID | <lnziuoz1m3.fsf@kst-u.example.com> (permalink) |
| References | (15 earlier) <nammpt$vsd$1@dont-email.me> <87y4a8pm48.fsf@bsb.me.uk> <nant3r$nrp$1@dont-email.me> <ln4mcw1kc1.fsf@kst-u.example.com> <nao3ap$hdt$1@dont-email.me> |
BartC <bc@freeuk.com> writes:
> On 25/02/2016 22:44, Keith Thompson wrote:
>> In your version:
>> for (char* first = s, s += len - 1; s >= first; putchar(*s), --s);
>> the first clause is neither a valid declaration nor a valid expression.
>> It's a syntax error.
>
> You're making too much of this. Here's a version that compiles and runs,
> and is all in one for-statement header:
>
> for (char* first = s, *t =s+ len - 1; t >= first; putchar(*t), --t);
Ok. Now the first clause is a valid declaration.
But just because you *can* put a lot of code into a for-statement
header, that doesn't mean you *should*. Would you prefer that the C
language imposed some arbitrary maximum complexity on what can go into
the header of a for loop? How would you define that? And why?
>>> And you're right, to me it's another example of the comma operator being
>>> fragile.
>
>> A metaphor: The fact that something breaks when you smash it with a
>> sledgehammer doesn't imply that it's particularly fragile.
>
> Suppose you start with:
>
> int i,j;
>
> for (i=0, j+=N; i<N; ++i,--j) {....}
>
> Then decided to bring the declaration inside:
>
> for (int i=0, j+=N; i<N; ++i,--j) {....}
>
> This however doesn't work. The comma has been transformed from an
> operator to a separator. There are countless examples of ways this can
> break, sometimes silently, but which nevertheless is not quite what you
> wanted.
You're right, it doesn't work; again, you've created a syntax error,
which the compiler will immediately diagnose for you.
> That's not hitting anything with a sledgehammer. It's more like brushing
> it with a feather.
I disgree.
>> You say that C's for-loops "seem to encourage" the version you
>> suggested. In fact they do not, since any C compiler will reject it.
>
> OK, you're still going on about the fact that I didn't test my example!
Yes. If your transformation had produced something that still compiles
but doesn't do what you want, that might be a valid argument that for
loops are "fragile". If you make a change that causes the code not to
compile, all I can tell you is Don't Do That.
>>> That might be an issue when the string is at address 0x000000. And if
>>> the string is at the start of an allocation block, at any address, then
>>> there might be a pointer to just before that allocation at some point,
>>> and possibly to non-existent memory.
>>
>> It's undefined behavior regardless of where the string is located. It
>> might happen to work in some cases.
>
> You're getting hung up on the C code. I can see beyond that to the
> low-level operations that are involved. Those aren't tied to a
> particular language.
We're talking about C code. At least I am, and you're specifically
expressing your dislike of C for loops.
>>> But, if you're going to worry about things like that, then I think your
>>> version can suffer from the same problem, if the string is not
>>> zero-terminated. (And that would be a good reason for the caller to have
>>> to supply the length.)
>>
>> If it's not zero-terminated, then by definition it isn't a string.
>
> Well we don't know if rev() expects a string or not, it doesn't say.
And that's a problem.
> But if it isn't a zero-terminated string, then pointing one past the end
> seems to me just as bad as pointing just before the start (or is there a
> special exception in C for this?).
Ben's improved version was:
void print_reverse(const char *str_start, size_t len)
{
const char *cp = str_start + len;
while (cp > str_string)
putchar(*--cp);
}
If str_start points to an empty string, it's well behaved if len==0. If
len==1 it will print the null byte, which typically isn't what you'd
want. But even then, it constructs a pointer that points just past the
null byte, but it never dereferences it, so there's no problem. (Yes,
there's a special case: you can construct a pointer just past the end of
an array as long as you don't dereference it. There is no such special
case for a pointer before the beginning of an array.)
The function's documentation should probably state that str_start must
point to the initial element of an array of at least len characters.
--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Working, but not speaking, for JetHead Development, Inc.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-02-18 08:35 -0800
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-02-18 08:48 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-18 22:21 +0100
Re: Aargh! Don't do this! guinness.tony@gmail.com - 2016-02-19 03:11 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-19 13:49 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-02-19 10:24 -0500
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-19 17:00 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-02-19 12:08 -0500
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-02-19 12:15 -0800
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-02-19 11:06 -0800
Re: Aargh! Don't do this! Stephen Sprunk <stephen@sprunk.org> - 2016-02-19 11:53 -0600
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-02-19 10:58 -0800
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-02-24 09:40 -0800
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-02-24 10:24 -0800
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-02-24 10:31 -0800
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-02-25 06:52 -0800
Re: Aargh! Don't do this! Thomas Richter <thor@math.tu-berlin.de> - 2016-02-20 00:44 +0100
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-02-24 16:28 -0800
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-02-25 20:17 +1300
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-02-25 10:41 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-02-25 02:54 -0800
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-02-25 10:26 -0600
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-01 09:44 -0800
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-01 09:26 -0800
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-01 10:08 -0800
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-01 11:01 -0800
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-01 11:37 -0800
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-01 12:15 -0800
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-01 12:44 -0800
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-02 15:27 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-02 14:41 -0800
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-02 23:35 +0000
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-03 16:44 +1300
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-03 01:09 -0800
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-01 13:10 -0800
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-03-01 19:56 +0000
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-01 23:13 +0100
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-05 10:30 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-01 23:00 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-02-25 01:12 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-25 11:16 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-25 11:02 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-02-25 03:21 -0800
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-25 12:02 +0000
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-25 13:19 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-02-25 20:32 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-25 21:55 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-25 14:44 -0800
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-25 23:41 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-25 17:44 -0800
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-26 02:03 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-25 19:34 -0800
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-02-25 22:27 -0800
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-26 11:59 -0800
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-02-25 23:57 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-26 01:29 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-25 18:19 -0800
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-02-26 11:46 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-26 12:25 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-02-26 21:11 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-26 12:41 -0800
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-02-25 19:50 -0500
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-26 17:29 +0100
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-26 19:33 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-02-26 20:43 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-02-26 11:03 -0800
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-02-26 19:56 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-26 21:04 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-26 13:13 -0800
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-02-26 19:33 -0800
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-02-26 21:16 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-26 12:59 -0800
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-03 08:20 -0800
Re: Aargh! Don't do this! Philip Lantz <prl@canterey.us> - 2016-02-26 01:02 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-02-26 19:35 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-26 19:09 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-26 12:27 -0800
Re: Aargh! Don't do this! Philip Lantz <prl@canterey.us> - 2016-02-26 19:53 -0800
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-02-27 08:26 -0800
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-02-27 16:56 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-02-27 10:27 -0800
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-02-26 19:49 +0000
Re: Aargh! Don't do this! Philip Lantz <prl@canterey.us> - 2016-02-26 19:56 -0800
Re: Aargh! Don't do this! Philip Lantz <prl@canterey.us> - 2016-02-26 19:58 -0800
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-01 14:38 -0800
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-02 11:02 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-02 13:27 +0000
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-02 16:40 +0100
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-03-02 20:28 +0000
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-05 14:44 -0800
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-06 12:00 +1300
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-07 21:42 +0000
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-16 10:41 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-21 18:13 +1300
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-21 10:10 +0100
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-21 07:55 -0400
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-21 13:23 +0100
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-21 08:56 -0400
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-21 09:20 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-21 21:18 +0100
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-21 13:36 -0700
Re: Aargh! Don't do this! Öö Tiib <ootiib@hot.ee> - 2016-03-21 14:28 -0700
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-21 17:49 -0400
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-22 11:37 +0000
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-03-22 11:53 +0000
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-22 13:35 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-22 12:43 +0000
Re: Aargh! Don't do this! Öö Tiib <ootiib@hot.ee> - 2016-03-22 07:01 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-22 12:16 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 12:40 +0000
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-03-22 12:51 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 13:32 +0000
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-22 15:49 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 19:20 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-22 21:30 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 21:52 +0000
Re: Aargh! Don't do this! Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2016-03-22 18:02 -0400
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-22 22:07 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 22:28 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-22 22:47 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-22 23:05 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-22 16:43 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-23 00:33 +0000
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-03-22 20:44 -0400
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-23 01:10 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-23 01:23 +0000
AWK's 'for' loop (Was: Aargh! Don't do this!) gazelle@shell.xmission.com (Kenny McCormack) - 2016-03-23 05:30 +0000
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-23 08:18 -0700
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-03-23 23:43 -0400
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-22 18:13 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-23 14:33 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-23 15:02 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-23 19:09 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-23 21:18 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-23 14:54 -0700
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-23 22:21 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-23 22:42 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-23 22:41 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 00:43 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 00:54 +0000
Re: Aargh! Don't do this! luser droog <luser.droog@gmail.com> - 2016-03-23 21:26 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 11:43 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-24 01:43 -0700
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-03-24 02:47 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 10:30 +0000
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-03-24 03:54 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 11:54 +0000
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-03-24 05:31 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 13:04 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 13:16 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 13:12 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-24 06:24 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 13:46 +0000
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-03-24 07:05 -0700
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-03-24 07:02 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 14:44 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 15:00 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 15:31 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 15:36 +0000
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-03-24 11:22 -0500
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 16:54 +0000
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-03-24 13:05 -0400
Re: Aargh! Don't do this! Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2016-03-24 13:43 -0400
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-24 13:51 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 17:00 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 17:31 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 18:26 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 21:19 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 01:18 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-25 11:21 +0000
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-25 12:07 +0000
Re: Aargh! Don't do this! Jos V <xjosx@xjosaphatx.co> - 2016-03-26 15:19 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-26 19:40 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-26 14:35 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-26 22:11 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-24 11:18 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-24 11:13 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-25 09:26 +1300
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 01:16 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-25 14:16 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 06:54 -0700
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-25 15:43 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 11:10 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 19:29 +0000
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-24 11:00 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 16:12 +0000
Re: Aargh! Don't do this! David Thompson <dave.thompson2@verizon.net> - 2016-04-12 21:58 -0400
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-04-15 19:13 +0000
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-03-24 11:19 -0500
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-24 11:06 -0700
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-03-24 19:43 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 16:05 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 10:28 +0000
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-25 11:49 +0000
Re: Aargh! Don't do this! Geoff <geoff@invalid.invalid> - 2016-03-23 11:43 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-23 01:15 +0000
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-03-23 01:32 -0700
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-03-23 12:53 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-23 00:07 +0000
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-03-23 11:41 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-23 10:16 -0700
Re: Aargh! Don't do this! jadill33@gmail.com - 2016-03-23 11:55 -0700
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-30 11:04 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 18:48 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-24 19:03 +0000
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-03-24 14:15 -0500
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-24 12:18 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 19:20 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 01:04 -0700
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-03-25 12:26 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 19:28 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-25 11:18 +0000
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-25 18:04 +0100
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-25 12:17 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 12:49 -0700
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 07:14 +0100
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 07:23 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-25 23:54 -0700
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 10:16 +0100
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 10:35 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-03-26 03:04 -0700
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 10:18 +0100
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-03-26 10:24 +0100
Re: Aargh! Don't do this! Richard Damon <Richard@Damon-Family.org> - 2016-03-26 11:28 -0400
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 19:33 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-26 16:13 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-24 12:11 -0700
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-24 12:36 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 21:21 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-24 15:25 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-24 22:40 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-24 16:21 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-25 13:53 +1300
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-25 01:23 +0000
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-03-25 16:23 +1300
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-25 01:25 +0000
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-03-24 19:09 -0700
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-30 11:25 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-25 12:25 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-25 14:06 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-25 08:44 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-25 16:02 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-25 09:21 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-25 18:40 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 19:42 +0000
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-03-26 15:49 -0400
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-26 20:22 +0000
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-26 21:34 +0000
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-03-26 19:36 -0500
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-03-26 21:43 +0000
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-03-27 04:43 +0100
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-25 15:47 +0000
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-03-24 23:17 -0400
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-03-22 15:48 -0700
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-03-30 14:37 -0700
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-03-30 17:58 -0400
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-03-31 08:47 +0000
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-04-05 11:10 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-05 11:18 -0700
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-04-06 09:38 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-06 18:18 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-06 10:48 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-07 00:34 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-06 17:23 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-07 11:38 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-07 11:49 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-07 12:10 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-07 12:12 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-07 12:35 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-07 19:42 -0400
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-04-07 18:51 -0700
Re: Aargh! Don't do this! Robert Wessel <robertwessel2@yahoo.com> - 2016-04-08 02:14 -0500
Re: Aargh! Don't do this! Les Cargill <lcargill99@comcast.com> - 2016-04-08 02:41 -0500
Re: Aargh! Don't do this! Richard Damon <Richard@Damon-Family.org> - 2016-04-08 16:13 -0400
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-04-08 22:20 +0000
Re: Aargh! Don't do this! Philip Lantz <prl@canterey.us> - 2016-04-08 21:51 -0700
Re: Aargh! Don't do this! Robert Wessel <robertwessel2@yahoo.com> - 2016-04-09 02:54 -0500
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-08 22:47 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-08 15:29 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-09 10:51 +1200
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 19:12 -0400
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-09 11:45 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 01:27 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-09 12:34 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 01:47 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-09 13:19 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 11:04 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-09 22:46 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 12:22 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 04:57 -0700
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 05:41 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-10 12:31 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-10 02:22 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-10 21:21 +1200
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-09 21:40 -0400
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-10 21:25 +1200
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-10 10:20 -0400
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 04:40 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 13:55 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 06:15 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 14:43 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 06:56 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 17:29 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 09:57 -0700
Re: Aargh! Don't do this! mrs@kithrup.com (Mike Stump) - 2016-04-29 07:57 +0000
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-29 20:23 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-29 11:32 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-29 23:38 +1200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-29 13:15 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-30 16:32 +1200
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-04-29 23:54 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-30 11:15 +0100
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-04-30 22:32 +1200
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-04-30 09:41 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-01 00:33 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-30 11:31 +0100
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-04-30 09:06 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-30 15:09 +0100
Re: Aargh! Don't do this! Robert Wessel <robertwessel2@yahoo.com> - 2016-05-01 00:32 -0500
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-01 10:54 +0100
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-09 13:58 +0200
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 05:18 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 13:37 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 05:46 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 14:07 +0100
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 06:28 -0700
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-04-09 07:14 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-09 15:27 +0200
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 20:43 -0400
Re: Aargh! Don't do this! Randy Howard <rhoward.mx@EverybodyUsesIt.com> - 2016-04-09 13:37 -0500
Re: Aargh! Don't do this! Öö Tiib <ootiib@hot.ee> - 2016-04-10 01:43 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 01:03 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-04-08 22:22 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-08 11:46 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-08 11:30 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-08 11:48 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 07:37 -0400
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-08 14:19 +0200
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-08 13:40 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 08:40 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-08 16:52 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 12:47 -0400
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-08 17:40 +0100
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-08 12:51 -0400
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-08 18:26 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-08 20:37 +0100
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-04-09 15:38 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-09 16:52 +0100
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-09 22:33 +0200
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-04-14 07:18 -0700
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-04-14 14:26 +0000
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-04-14 09:44 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 13:41 +0100
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-05-03 11:21 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-03 20:12 +0100
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-05-05 09:40 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-05 18:04 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-05 11:01 -0700
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-05-08 09:16 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-08 10:48 +0100
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-05-08 11:10 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-08 04:59 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-08 13:18 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-08 18:53 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-08 19:09 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-08 19:38 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-08 20:07 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-08 20:33 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-08 21:11 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-08 21:51 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-08 14:45 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-09 00:45 +0100
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-05-08 21:17 -0400
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-05-08 19:40 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 00:42 -0700
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-05-09 09:07 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-09 10:48 +0100
Re: Aargh! Don't do this! Eric Sosman <esosman@comcast-dot-net.invalid> - 2016-05-09 08:57 -0400
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 00:31 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-09 11:54 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 10:50 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-09 11:35 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-09 20:30 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 13:44 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-09 14:08 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 15:09 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-09 15:21 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 21:26 -0700
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-05-10 06:59 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 02:24 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-10 08:50 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 09:32 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-10 18:12 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 13:28 -0700
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-05-13 16:12 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-10 11:11 -0700
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-05-10 19:00 +0000
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-05-10 06:57 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-09 22:48 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-09 15:13 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-10 00:45 +0100
Re: Aargh! Don't do this! Gareth Owen <gwowen@gmail.com> - 2016-05-10 07:01 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-10 11:44 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 04:20 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-10 16:03 +0100
Re: Aargh! Don't do this! gwowen <gwowen@gmail.com> - 2016-05-10 08:08 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 08:09 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 01:17 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 08:47 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 01:04 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 20:20 -0700
Re: Aargh! Don't do this! luser droog <luser.droog@gmail.com> - 2016-05-10 21:06 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-10 21:56 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 13:58 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 12:31 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-11 06:17 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 19:50 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-11 20:45 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 21:15 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-11 22:42 -0700
Pronouns (Was: Aargh! Don't do this!) gazelle@shell.xmission.com (Kenny McCormack) - 2016-05-11 20:31 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-11 08:31 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-11 17:00 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-11 08:34 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-09 08:59 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-09 17:43 +0100
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-05-09 09:55 -0700
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-09 10:57 -0700
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-05-09 07:40 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-08 14:39 -0700
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-05-15 02:43 -0700
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-15 03:12 -0700
Re: Aargh! Don't do this! fir <profesor.fir@gmail.com> - 2016-05-15 04:28 -0700
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-05-22 13:39 +0000
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-22 10:00 -0700
Re: Aargh! Don't do this! Les Cargill <lcargill99@comcast.com> - 2016-05-22 17:15 -0500
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-05-22 18:47 -0400
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-23 01:15 -0700
Re: Aargh! Don't do this! Ian Collins <ian-news@hotmail.com> - 2016-05-23 22:01 +1200
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-23 03:59 -0700
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-05-23 09:06 -0400
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-23 06:35 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-05-23 16:56 +0200
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-05-23 16:55 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-23 18:08 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-23 10:24 -0700
Re: Aargh! Don't do this! Robert Wessel <robertwessel2@yahoo.com> - 2016-05-23 21:55 -0500
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-05-23 23:16 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-05-23 22:51 +0200
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-24 10:32 +0100
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-05-26 11:17 +0200
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-05-23 16:31 -0400
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-05-10 06:20 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-10 14:56 +0100
Re: Aargh! Don't do this! Tim Rentsch <txr@alumni.caltech.edu> - 2016-05-14 10:36 -0700
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-05-10 14:02 +0000
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-05-05 11:08 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-05-05 19:21 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-04-07 03:52 -0700
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-07 12:10 +0100
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-04-09 15:48 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-07 12:14 +0100
Re: Aargh! Don't do this! raltbos@xs4all.nl (Richard Bos) - 2016-04-10 11:46 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-10 14:25 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-10 15:53 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-10 17:00 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-10 20:01 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-10 20:28 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-11 00:40 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-11 11:47 +0100
Re: Aargh! Don't do this! Richard Heathfield <rjh@cpax.org.uk> - 2016-04-11 11:53 +0100
Re: Aargh! Don't do this! Malcolm McLean <malcolm.mclean5@btinternet.com> - 2016-04-11 04:39 -0700
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-11 13:15 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-11 14:14 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-11 14:28 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 12:37 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-15 08:10 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 16:33 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-15 16:29 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 16:50 +0100
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-04-15 16:39 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-16 12:29 +0100
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-04-16 14:02 +0000
Re: Aargh! Don't do this! Rosario19 <Ros@invalid.invalid> - 2016-04-16 20:56 +0200
Re: Aargh! Don't do this! David Thompson <dave.thompson2@verizon.net> - 2016-04-23 10:28 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-15 18:00 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 18:21 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-15 11:30 -0700
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 20:56 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-15 14:30 -0700
Re: Aargh! Don't do this! gazelle@shell.xmission.com (Kenny McCormack) - 2016-04-15 21:33 +0000
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 23:23 +0100
Re: Aargh! Don't do this! Keith Thompson <kst-u@mib.org> - 2016-04-15 15:33 -0700
Re: Aargh! Don't do this! Jerry Stuckle <jstucklex@attglobal.net> - 2016-04-15 19:38 -0400
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-15 21:22 +0100
Re: Aargh! Don't do this! BartC <bc@freeuk.com> - 2016-04-15 21:41 +0100
Re: Aargh! Don't do this! Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-04-15 22:50 +0100
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-11 16:44 +0200
Re: Aargh! Don't do this! supercat@casperkitty.com - 2016-04-11 09:00 -0700
Re: Aargh! Don't do this! David Brown <david.brown@hesbynett.no> - 2016-04-11 18:47 +0200
(Thread has 770 articles, showing 500 — browse group in flat view)
csiph-web