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-03-24 16:21 -0700 |
| Organization | None to speak of |
| Message-ID | <lny4974g34.fsf@kst-u.example.com> (permalink) |
| References | (13 earlier) <3fedd669-1ea4-414e-97e2-17013ca6828d@googlegroups.com> <nd1cjh$fp0$1@dont-email.me> <87d1qja7x9.fsf@bsb.me.uk> <ln7fgr5x9y.fsf@kst-u.example.com> <nd1q7d$3gm$1@dont-email.me> |
BartC <bc@freeuk.com> writes:
> On 24/03/2016 22:25, Keith Thompson wrote:
>> Ben Bacarisse <ben.usenet@bsb.me.uk> writes:
>>> BartC <bc@freeuk.com> writes:
>
>>>> But apparently none of the experts here have the slightest problem
>>>> with very 'busy' loop statements.
>>>
>>> Hmmm... am I in that category? If so, I wonder how you conclude I have
>>> no problem with very busy loop statements...
>
> (OK, of those expressed an opinion...)
>
>>> <snip>
>>
>> Let me speculate based on what Bart has written here.
>>
>> Bart finds both this:
>>
>> for (node *ptr = head; node != NULL; node = node->next)
>>
>> and this:
>>
>> for ([complicated 20-line expression];
>> [complicated 20-line expression];
>> [complicated 20-line expression])
>>
>> to be "very busy", and assumes that anyone who doesn't object to the
>> first would not object to the second.
>>
>> Bart, would you say that's a reasonably accurate summary of your
>> opinion? This is not intended as a criticism, just an attempt at
>> understanding where you're coming from.
>
> Actually, if the second example really was on separate lines (not 60 but
> perhaps 3), then it would at least be clearer in that respect! That, is,
> I can tell more easily where one part clause ends and the next begins.
>
> But if you were to split it up, then there wouldn't be much difference
> between:
>
> for (node *ptr = head;
> node != NULL;
> node = node->next)
>
> and, giving it even more visible extra and an extra cue in form of 'while':
>
> node *ptr = head;
> while (node != NULL) {
> ....
> node = node->next;
> }
>
> (And if there was no body, and you really needed it on one line:
>
> node *ptr = head; while (node != NULL) node = node->next;
>
> )
Bart, I take you at your word that you find the while loop more legible
than the for loop, but I am truly at a loss to understand it. Perhaps
you're hung up on the use of the word "for", which you expect to mean
something other than what it means in C, but I don't think that's all of
it.
I might expect this from someone who simply doesn't understand how C's
for loop is defined, but that's not the case for you.
I find this:
for (node *ptr = head; node != NULL; node = node->next)
to be quite idiomatic and easy to understand. Splitting the three
clauses onto separate lines doesn't hurt the readability *too* much, but
it certainly doesn't help. It would if the clauses were too long to fit
on a single line, but in this case they aren't.
Breaking it down into a while loop definitely doesn't help. With the
for loop, the entire looping mechanism is gathered in one place.
With your transformation to a while loop, it's scattered to the
line preceding the loop, the top line of the loop, and last line
of the body of the loop.
And no, if I were going to write it as a while loop I *definitely*
wouldn't put it all on one line; that's just obfuscation (and your
one-line while loop omitted the code that does something with the
current node). I suspect you agree that putting it on one line is
not helpful, but you expected me to think it does help.
C's for loop is not going to change, because most C programmers have no
problem with it the way it is now, and because changing it would break
existing code.
You're not going to convince us that your opinions about for loops are
correct, nor are we going to convince you.
I really don't think there's anything more that can be usefully said.
--
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