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


Groups > comp.lang.c > #82680

Re: Aargh! Don't do this!

From Keith Thompson <kst-u@mib.org>
Newsgroups comp.lang.c
Subject Re: Aargh! Don't do this!
Date 2016-02-25 14:44 -0800
Organization None to speak of
Message-ID <ln4mcw1kc1.fsf@kst-u.example.com> (permalink)
References (13 earlier) <kfnio1dr5tz.fsf@x-alumni2.alumni.caltech.edu> <namk52$na4$1@dont-email.me> <nammpt$vsd$1@dont-email.me> <87y4a8pm48.fsf@bsb.me.uk> <nant3r$nrp$1@dont-email.me>

Show all headers | View raw


BartC <bc@freeuk.com> writes:
> On 25/02/2016 20:32, Ben Bacarisse wrote:
>> BartC <bc@freeuk.com> writes:
[...]
>>>   for (char* first = s, s += len - 1; s >= first; putchar(*s), --s);
>>
>> This does not do what you think it does.  Of course, in your mind that's
>> another reason why C should not permit one to write such a statement.
>> Other opinions are possible.
>
> That's true, I didn't compile it. Use of the 'char*' transforms the 
> first comma into a separator for the declaration statement.

No, it doesn't.  There is no such thing in C as a "declaration
statement".  Declarations and statements are disjoint.  The first clause
of a for loop can be either (a) an optional expression followed by a
semicolon, or (b) a declaration (which includes a trailing semicolon).
In the original:
    for (first = s, s += len - 1; s >= first; --s)
there are three expressions:
    first = s, s += len - 1
    s >= first
    --s

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.

> 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.

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.

[...]

> What's the UB, that the original can end up pointing to the location 
> just before the string?

Yes.

> 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.  (On many systems, it might happen
to work in all cases -- until you're demonstrating the code to someone
important.)

> But that pointer will never be dereferenced, although I understand there 
> are some hypothetical machines where apparently just the existence of 
> such a pointer causes mayhem.
>
> 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.  In
the standard library, functions that expect pointers to string have
undefined behavior if they're called with a pointer that doesn't point
to a string.  Passing a correct pointer is the caller's responsibility.
Unfortunately, checking the validity of parameter is not always
possible.

A function that takes a pointer to a string and has undefined behavior
given a pointer to an empty string is quite another matter.  If the
restriction is not documented, it's a bug.  If the restriction is
documented, it's probably just poor design, but again, it would be the
caller's responsibility to avoid passing a pointer to an empty string.

-- 
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 | NextPrevious in thread | Next in thread | Find similar | Unroll thread


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