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


Groups > alt.folklore.computers > #152743

Re: [Poll] Computing favorities

From "John E. Davis" <jed@jedsoft.org>
Newsgroups alt.folklore.computers, comp.misc
Subject Re: [Poll] Computing favorities
Date 2015-10-12 17:53 +0000
Organization A noiseless patient Spider
Message-ID <slrnn1nt05.jgu.jed@jedsoft.org> (permalink)
References (7 earlier) <slrnn1g840.334.mausg@dmaus.org> <8kdg1b9mad26m6b1bbo8ep6bge6v5faj4b@4ax.com> <d7quobFhvhhU14@mid.individual.net> <slrnn1heig.b1u.plan.b@ID-309335.user.uni-berlin.de> <news.Sat.20151010.003955.PDT.649@mariposabill.com>

Cross-posted to 2 groups.

Show all headers | View raw


On Sat, 10 Oct 2015 00:39:55 -0700 (PDT), Bill Evans <wje@acm.org>
wrote:
> Another very common RPN language is PostScript.  PostScript

S-Lang <http://jedsoft.org/slang/> was heavily inpired by postscript.
Although now it uses a C-like syntax, it can still be programmed using
RPN.  For example, jed <http://jedsoft.org/jed/>, which embeds S-Lang
as its extension language, has a mode for editing VMS DCL files that is
is still written mainly in RPN:

% dcl mode--  Special mode to facilitate editing of DCL files on VMS systems.
%

. ( [goal] 3 =goal

.   push_spot
.   {up_1}
.    {
.       eol_trim
.       bol_skip_white
.       '$' looking_at_char
.          { "$\t " skip_chars
.          '!' looking_at_char {what_column =goal break} ifnot
.        }
.        {
.          '!' looking_at_char
.             {
                 % This takes care of running text following something
                 % like type sys$input
.                push_spot
.                up_1 eol bolp not and
.                  {trim go_left_1
.                   '-' looking_at_char
.                     { pop_spot what_column =goal break} ifnot
.                  } if
.                pop_spot
.             } ifnot
.        } else
.    }
.   while

.   {"then" looking_at {2 +=goal 1} {0} else}
.   {"else" looking_at {2 +=goal 1} {0} else}
.   orelse pop  % orelse puts final value on stack
.   pop_spot

.   bol "$\t " skip_chars
.   {"else" looking_at {2 -=goal 1} {0} else}
.   {"endif" looking_at {2 -=goal 1} {0} else}
.   orelse pop
.   goal 1 > {goal}{3} else
. ) dcl_get_ind

. (
.    [goal]
.    push_spot
.    dcl_get_ind =goal

.    push_spot
.    up_1 {eol_trim bolp {1 go_left '-' looking_at_char {2 +=goal} if} ifnot} if
.    pop_spot

.    bol "\t $" skip_chars
.    '!' looking_at_char
.      { "\t " bskip_chars trim goal what_column - whitespace}
.    ifnot
.    pop_spot
.    skip_white
. )  dcl_indent

. ( [cont p] 0 =cont
.   bobp bolp '$' looking_at_char and or {"$ \n" insert 1 left pop return} if
.   trim
.   push_spot
  % If line does not start with '$', assume something like
  % type sys$input going on and do not give dollar
.   push_spot bol
.   '$' looking_at_char not up_1 and
.     {
.        bolp eol_trim
.        1 go_left
.        what_char '-' != =cont
.     }
.   if
.   pop_spot

.   cont {
.     _get_point =p "sys$input" bfind
.       { 9 right pop
.         ':' what_char == {1 right pop} if
.       _get_point p == =cont
.       } if
.     p _set_point
.   } ifnot

.   bolp {1 left pop
.         '-' looking_at_char { 1 =cont} if
.        }
.       ifnot
.   pop_spot
.   newline
.   cont {'$' insert_char} ifnot
.   dcl_indent
. ) dcl_newline

create_syntax_table("dcl");

#ifdef HAS_DFA_SYNTAX
%%% DFA_CACHE_BEGIN %%%
private define setup_dfa_callback (name)
{
   dfa_define_highlight_rule("!.*$", "comment", name);
   dfa_define_highlight_rule("\"[^\"]*\"", "string", name);
   dfa_define_highlight_rule("/[a-zA-Z][_a-zA-Z0-9\\-]*", "keyword2", name);
   dfa_define_highlight_rule("\\.([gG]|[lL]|[nN])[eE][sS]?\\.", "preprocess", name);
   dfa_define_highlight_rule("\\.([gG]|[lL])[tT][sS]?\\.", "preprocess", name);
   dfa_define_highlight_rule("\\.[eE][qQ][sS]?\\.", "preprocess", name);
   dfa_define_highlight_rule("\\.[nN][oO][tT]\\.", "preprocess", name);
   dfa_define_highlight_rule("\\.[aA][nN][tT]\\.", "preprocess", name);
   dfa_define_highlight_rule("\\.[oO][rR]\\.", "preprocess", name);
   dfa_define_highlight_rule("[a-zA-Z][\\$a-zA-Z0-9_\\-]*", "Knormal", name);
   dfa_define_highlight_rule("@", "keyword", name);
   dfa_define_highlight_rule("[0-9]+", "number", name);
   dfa_build_highlight_table(name);
}
dfa_set_init_callback (&setup_dfa_callback, "dcl");
%%% DFA_CACHE_END %%%
#endif

() = define_keywords_n ("dcl", "ifon", 2, 0);
() = define_keywords_n ("dcl", "eodmcrrunset", 3, 0);
() = define_keywords_n ("dcl", "callelseexitgotoopenreadshowthenwait", 4, 0);
() = define_keywords_n ("dcl", "closeendifgosubspawnwrite", 5, 0);
() = define_keywords_n ("dcl", "assigndefinereturn", 6, 0);
() = define_keywords_n ("dcl", "deassign", 8, 0);
() = define_keywords_n ("dcl", "subroutine", 10, 0);
() = define_keywords_n ("dcl", "endsubroutine", 13, 0);

() = define_keywords_n ("dcl", "f$faof$pid", 5, 1);
() = define_keywords_n ("dcl", "f$csidf$cvsif$cvuif$editf$filef$modef$timef$typef$user", 6, 1);
() = define_keywords_n ("dcl", "f$parse", 7, 1);
() = define_keywords_n ("dcl", "f$cvtimef$devicef$getdvif$getenvf$getjpif$getquif$getsyif$lengthf$locatef$searchf$setprvf$stringf$trnlnmf$verify", 8, 1);
() = define_keywords_n ("dcl", "f$contextf$elementf$extractf$integerf$messagef$process", 9, 1);
() = define_keywords_n ("dcl", "f$directoryf$privilege", 11, 1);
() = define_keywords_n ("dcl", "f$identifier", 12, 1);
() = define_keywords_n ("dcl", "f$environment", 13, 1);
() = define_keywords_n ("dcl", "f$file_attributes", 17, 1);

ifnot (keymap_p ("DCL"))
{
   make_keymap ("DCL");
   definekey ("dcl_newline", "^M", "DCL");
   definekey ("newline_and_indent", "\e^M", "DCL");
   definekey ("dcl_indent", "^I" , "DCL");
   definekey ("self_insert_cmd", "\"", "DCL");
   definekey ("self_insert_cmd", "'", "DCL");
}

define dcl_mode ()
{
   set_syntax_flags ("dcl",0x81);
   use_syntax_table("dcl");
   use_dfa_syntax(1);

   use_keymap ("DCL");
   set_mode ("dcl", 4);
   run_mode_hooks("dcl_mode_hook");
}


--John

Back to alt.folklore.computers | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 09:17 -0400
  Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-23 16:39 +0000
    Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 13:49 -0400
      Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-08-23 13:25 -0500
        Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 15:21 -0400
        Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 05:46 +1000
          Re: [Poll] Computing favorities Johnny B Good <johnny-b-good@invalid.ntlworld.com> - 2015-08-23 20:41 +0000
            Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-08-24 09:50 +0200
              Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 20:38 +1000
                Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-08-24 14:48 +0200
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-24 13:20 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-24 14:04 +0100
                Re: [Poll] Computing favorities lawrence@cluon.com - 2015-08-24 17:33 +0200
                Re: [Poll] Computing favorities "Bill Cunningham" <nospan@nspam.invalid> - 2015-08-25 13:34 -0400
                Re: [Poll] Computing favorities "Bill Cunningham" <nospan@nspam.invalid> - 2015-08-25 13:38 -0400
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-25 18:23 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-25 19:46 +0100
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-25 16:03 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 04:31 +1000
          Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-23 21:19 +0000
            Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 07:52 +1000
              Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-24 09:19 +0000
                Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 20:44 +1000
                Re: [Poll] Computing favorities RS Wood <rsw@therandymon.com> - 2015-08-24 19:16 +0000
                Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-24 20:43 +0000
                Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-25 08:37 +1000
                Re: [Poll] Computing favorities Mike Causer <m.r.causer@goglemail.com> - 2015-08-27 20:45 +0100
        Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-24 05:24 +0000
          Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-08-24 11:12 -0500
            Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 04:40 +1000
              Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-24 16:47 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 08:53 +1000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-25 10:10 -0700
                Re: [Poll] Computing favorities Dave Garland <dave.garland@wizinfo.com> - 2015-08-25 13:36 -0500
                Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-25 14:58 -0400
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-08-25 14:45 -0500
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-26 04:03 +0000
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-08-26 09:37 -0500
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-25 16:19 -0400
                Re: [Poll] Computing favorities pechter@S20.pechter.dyndns.org (William Pechter) - 2015-08-25 20:32 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 16:55 -0500
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 02:16 -0400
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-26 11:14 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-26 21:33 +1000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 09:37 -0400
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-26 18:48 +0100
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 15:12 -0400
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 11:09 +0100
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-27 09:29 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-27 13:40 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-27 10:15 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-28 05:17 +1000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 07:19 -0700
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 15:05 -0400
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-08-25 15:33 -0400
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-25 16:13 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 17:03 -0500
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-26 04:51 +1000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-25 16:00 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-26 06:30 +1000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-25 20:38 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-26 07:36 +1000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 17:10 -0500
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 07:42 -0700
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-08-26 18:58 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-26 23:40 +0000
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-27 01:13 +0000
                Re: [Poll] Computing favorities Dave Garland <dave.garland@wizinfo.com> - 2015-08-26 21:55 -0500
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 06:53 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 11:11 +0100
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-27 11:37 +0000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-08-27 08:54 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 19:23 -0700
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-27 13:40 +0000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 14:19 +0000
                Re: [Poll] Computing favorities Gene Wirchenko <genew@telus.net> - 2015-08-27 12:11 -0700
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 19:20 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-28 13:31 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 07:16 -0700
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-26 16:08 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 11:32 -0700
                Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-26 14:59 -0400
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 15:20 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 19:12 -0700
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-27 13:41 +1000
                Re: [Poll] Computing favorities Stan Barr <plan.b@bluesomatic.org> - 2015-08-27 07:06 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 11:20 +0100
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 11:32 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-27 11:37 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-27 09:42 -0700
                Re: [Poll] Computing favorities Dave Garland <dave.garland@wizinfo.com> - 2015-08-27 13:54 -0500
                Re: [Poll] Computing favorities Trog Woolley <trog@email.fake> - 2015-08-29 17:13 -0500
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-28 05:42 +1000
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-28 02:10 +0000
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-08-27 08:06 -0500
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-27 14:38 +0000
                Re: [Poll] Computing favorities Dave Garland <dave.garland@wizinfo.com> - 2015-08-26 13:33 -0500
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 15:26 -0400
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 11:23 +0100
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 11:30 +0000
                Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-08-27 14:35 +0200
                Re: [Poll] Computing favorities Stan Barr <plan.b@bluesomatic.org> - 2015-08-27 14:17 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-27 10:33 -0700
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-27 11:36 -0700
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-27 11:37 +0000
                Re: [Poll] Computing favorities Robert Swindells <rjs@fdy2.co.uk> - 2015-08-27 12:27 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 16:46 +0100
                Re: [Poll] Computing favorities Joe Makowiec <makowiec@invalid.invalid> - 2015-08-27 16:10 +0000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 17:49 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-27 13:40 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-27 10:17 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 14:21 +0000
                Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-27 14:23 +0000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-27 15:39 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-27 09:53 -0700
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-28 05:51 +1000
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-09-11 18:47 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-09-12 11:23 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-09-12 13:24 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-28 13:31 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-28 07:54 -0700
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-28 19:16 +0100
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-28 12:22 -0700
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-28 19:48 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-29 13:41 +0000
                Re: [Poll] Computing favorities John Levine <johnl@iecc.com> - 2015-08-29 17:50 +0000
                Re: [Poll] Computing favorities Stan Barr <plan.b@bluesomatic.org> - 2015-08-30 06:56 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-30 14:58 +0000
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-31 06:35 +1000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-29 06:10 +1000
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-28 19:31 +0000
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-29 05:57 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-29 13:41 +0000
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-08-29 08:59 -0500
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-30 05:35 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-30 14:58 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-30 16:02 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-31 12:09 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-31 14:48 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-31 10:03 -0700
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-31 10:07 -0700
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-31 17:30 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-31 11:26 -0700
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-31 18:53 +0000
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-31 20:11 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-31 14:22 -0700
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-31 18:53 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-31 12:21 -0700
                Response time Alan Bowler <atbowler@thinkage.ca> - 2015-09-15 17:23 -0400
                Re: Response time Bob Eager <news0005@eager.cx> - 2015-09-15 22:30 +0000
                Re: [Poll] Computing favorities Gerard Schildberger <gerard46@rrt.net> - 2015-08-31 16:20 -0700
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-09-01 12:50 +0000
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-09-02 05:19 +1000
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-09-01 04:59 +1000
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-09-15 16:19 -0400
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-09-16 12:54 +0000
                Re: [Poll] Computing favorities Gerard Schildberger <gerard46@rrt.net> - 2015-08-30 10:41 -0700
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-09-16 13:01 -0400
                Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-09-17 08:29 -0400
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-31 06:38 +1000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-29 04:54 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-29 13:41 +0000
                Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-30 06:11 +1000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-28 05:19 +1000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-28 13:31 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-29 04:43 +1000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-27 09:39 -0700
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-27 18:09 +0100
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-27 13:51 -0400
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-28 08:40 +0100
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-08-29 14:54 -0400
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-29 20:12 +0100
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-08-29 15:21 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-29 19:30 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-29 22:10 -0400
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-30 05:22 +0100
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-30 06:51 +0100
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-30 14:58 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-30 16:02 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-30 14:06 -0400
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-31 06:43 +1000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-09-02 15:03 -0500
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-02 14:02 -0700
                Re: [Poll] Computing favorities Gene Wirchenko <genew@telus.net> - 2015-09-02 22:46 -0700
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-09-03 09:36 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-03 07:29 -0700
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-09-03 20:01 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-03 13:25 -0700
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-09-03 21:53 +0100
                Re: [Poll] Computing favorities rpw3@rpw3.org (Rob Warnock) - 2015-09-04 10:58 +0000
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-09-04 18:17 +0000
                Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-09-03 15:41 -0700
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-08 10:28 -0700
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-09-09 00:39 +0000
                Re: [Poll] Computing favorities Gene Wirchenko <genew@telus.net> - 2015-09-08 20:56 -0700
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-09-24 13:02 -0400
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-09-25 12:59 +0000
                Re: [Poll] Computing favorities Greymaus <mausg@mail.com> - 2015-09-09 10:12 +0000
                Re: [Poll] Computing favorities simon@twoplaces.co.uk (Simon Turner) - 2015-09-10 08:35 +0100
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-09-15 18:26 -0400
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-09-15 18:27 -0400
                Re: [Poll] Computing favorities "Bill Cunningham" <nospam@nspam.invalid> - 2015-09-15 18:28 -0400
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-09-09 07:02 -0500
                Re: [Poll] Computing favorities rpw3@rpw3.org (Rob Warnock) - 2015-09-09 14:40 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-09 07:02 -0700
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-09-09 15:41 +0100
                Re: [Poll] Computing favorities Morten Reistad <first@last.name> - 2015-09-09 17:59 +0200
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-09-10 11:17 +0100
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-30 16:42 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-09-02 14:56 -0500
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-08-29 17:25 -0500
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-31 13:48 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-31 13:51 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-31 18:17 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-31 16:04 -0400
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-31 19:12 +0100
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-08-31 13:42 -0500
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-31 18:53 +0000
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-09-28 12:21 -0400
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-09-29 12:32 +0000
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-09-30 15:34 -0400
                Re: [Poll] Computing favorities John Levine <johnl@iecc.com> - 2015-10-01 01:38 +0000
                Re: [Poll] Computing favorities hankvc@blackhole.lostwells.org (Hank) - 2015-10-01 16:27 +0000
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-10-01 15:21 -0400
                Re: [Poll] Computing favorities rpw3@rpw3.org (Rob Warnock) - 2015-10-02 03:34 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-10-02 13:11 +0000
                Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-10-02 13:11 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-10-02 07:32 -0700
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-10-02 13:46 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-10-02 13:09 -0700
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-10-06 19:44 -0400
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-31 19:10 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-31 20:09 +0000
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-08-31 21:00 +0000
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-31 12:15 -0700
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-31 20:31 +0100
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-31 19:41 +0000
                Re: [Poll] Computing favorities Dave Garland <dave.garland@wizinfo.com> - 2015-08-31 22:04 -0500
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-09-01 18:46 +0000
                Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-09-01 15:38 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-02 08:13 -0700
                Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-09-03 00:17 +0200
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-02 08:10 -0700
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-09-02 08:05 -0700
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-26 21:21 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-27 05:42 +1000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-08-27 08:59 -0400
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-27 10:02 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 16:49 -0500
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-26 02:15 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-27 15:35 -0500
              Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-24 23:09 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 09:43 +1000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-25 06:55 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 17:19 +1000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-25 09:10 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 19:23 +1000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-25 11:26 +0000
                Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-26 04:43 +1000
            Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-24 15:01 -0400
              Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-24 16:22 -0500
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-08-25 15:39 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 17:18 -0500
                Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-08-31 20:38 -0400
              Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 08:35 +1000
              Re: [Poll] Computing favorities Rich Alderson <news@alderson.users.panix.com> - 2015-08-25 15:37 -0400
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-25 16:27 -0400
                Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-26 07:36 -0700
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-25 17:32 -0500
            Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-08-24 16:52 -0400
              Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-25 10:16 -0700
            Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-08-26 04:03 +0000
          Re: [Poll] Computing favorities hancock4@bbs.cpcn.com - 2015-08-24 12:22 -0700
            Re: [Poll] Computing favorities "hqhy" <hqhy@nospam.com> - 2015-08-25 08:41 +1000
      Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-23 18:47 +0000
        Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 15:16 -0400
          Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 17:18 -0400
          Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-23 21:20 +0000
            Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 17:31 -0400
              Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-08-24 09:55 +0200
            Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 07:53 +1000
              Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-24 09:18 +0000
            Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-24 01:17 +0000
              Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-08-24 10:28 +0200
            Re: [Poll] Computing favorities jmfbahciv <See.above@aol.com> - 2015-08-24 12:40 +0000
              Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-24 13:18 +0000
              Re: [Poll] Computing favorities "Rod Speed" <rod.speed.aaa@gmail.com> - 2015-08-25 04:34 +1000
          Re: [Poll] Computing favorities Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-23 22:39 +0100
            Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-24 09:16 +0000
              Re: [Poll] Computing favorities Andy Burns <usenet.feb2014@adslpipe.co.uk> - 2015-08-24 10:34 +0100
                Re: [Poll] Computing favorities Greymaus <mausg@mail.com> - 2015-08-24 10:58 +0000
                Re: [Poll] Computing favorities Stephen Wolstenholme <steve@easynn.com> - 2015-08-24 13:04 +0100
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-24 14:09 +0100
                Re: [Poll] Computing favorities Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-24 14:52 +0100
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-08-24 16:41 +0100
                Re: [Poll] Computing favorities Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-24 19:29 +0100
                Re: [Poll] Computing favorities     wje@acm.org (Bill Evans) - 2015-08-24 15:32 -0700
                Re: [Poll] Computing favorities Andy Burns <usenet.feb2014@adslpipe.co.uk> - 2015-08-25 07:16 +0100
                Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-10-07 18:38 -0400
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-10-07 19:26 -0500
                Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-10-08 08:46 +0200
                Re: [Poll] Computing favorities Morten Reistad <first@last.name.invalid> - 2015-10-08 21:50 +0200
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-09 13:28 +0000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-09 10:25 -0400
                Re: [Poll] Computing favorities Marko Rauhamaa <marko@pacujo.net> - 2015-10-09 18:07 +0300
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-09 11:24 -0400
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-10-09 10:55 -0500
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-09 12:18 -0400
                Re: [Poll] Computing favorities David Hume <David.Hume@example.com> - 2015-10-09 20:49 +0100
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-09 16:42 -0500
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-09 15:45 +0000
                Re: [Poll] Computing favorities Gordon Henderson <gordon+usenet@drogon.net> - 2015-10-09 17:32 +0000
                Re: [Poll] Computing favorities Greymaus <mausg@mail.com> - 2015-10-09 19:20 +0000
                Re: [Poll] Computing favorities Rich <rich@example.invalid> - 2015-10-09 19:32 +0000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-09 15:36 -0400
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-10-09 20:56 +0000
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-10-10 16:21 +0100
                Re: [Poll] Computing favorities Roberto Waltman <usenet@rwaltman.com> - 2015-10-09 17:51 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-09 22:51 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-09 22:55 -0400
                Re: [Poll] Computing favorities David Hume <David.Hume@example.com> - 2015-10-10 04:27 +0100
                Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-10-10 09:57 +0100
                Re: [Poll] Computing favorities Gordon Henderson <gordon+usenet@drogon.net> - 2015-10-10 17:09 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-10 13:57 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-10 18:05 -0500
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-10 00:30 -0400
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-10 09:01 +0000
                Re: [Poll] Computing favorities     wje@acm.org (Bill Evans) - 2015-10-10 03:38 -0700
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-10 11:22 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-10 18:13 -0500
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-10 23:57 +0000
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-10-10 09:24 -0400
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-10 11:33 -0400
                Re: [Poll] Computing favorities Marko Rauhamaa <marko@pacujo.net> - 2015-10-10 20:20 +0300
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-10 15:22 -0400
                Re: [Poll] Computing favorities Ahem A Rivet's Shot <steveo@eircom.net> - 2015-10-11 09:39 +0100
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-11 13:23 -0400
                Re: [Poll] Computing favorities andrew@cucumber.demon.co.uk (Andrew Gabriel) - 2015-10-11 17:56 +0000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-11 14:18 -0400
                Re: [Poll] Computing favorities     wje@acm.org (Bill Evans) - 2015-10-11 12:24 -0700
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-12 00:06 +0000
                Re: [Poll] Computing favorities andrew@cucumber.demon.co.uk (Andrew Gabriel) - 2015-10-12 07:17 +0000
                OT: systemd (was: [Poll] Computing favorities)     wje@acm.org (Bill Evans) - 2015-10-10 10:44 -0700
                Re: OT: systemd Dan Espen <despen@verizon.net> - 2015-10-10 15:29 -0400
                Re: OT: systemd Marko Rauhamaa <marko@pacujo.net> - 2015-10-10 22:31 +0300
                Re: OT: systemd Ahem A Rivet's Shot <steveo@eircom.net> - 2015-10-11 09:41 +0100
                OT: Wayland (was: systemd)     wje@acm.org (Bill Evans) - 2015-10-11 09:06 -0700
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-11 13:31 -0400
                Re: OT: Wayland     wje@acm.org (Bill Evans) - 2015-10-11 10:36 -0700
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-11 14:15 -0400
                Re: OT: Wayland Mike Spencer <mds@bogus.nodomain.nowhere> - 2015-10-11 19:53 -0300
                Re: OT: Wayland Melzzzzz <mel@zzzzz.com> - 2015-10-12 02:45 +0200
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-11 22:43 -0400
                Re: OT: Wayland Mike Spencer <mds@bogus.nodomain.nowhere> - 2015-10-12 02:58 -0300
                Re: OT: Wayland Ahem A Rivet's Shot <steveo@eircom.net> - 2015-10-12 08:34 +0100
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-12 08:28 -0400
                Re: OT: Wayland Mike Spencer <mds@bogus.nodomain.nowhere> - 2015-10-13 00:58 -0300
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-13 13:21 +0000
                Re: OT: Wayland Stan Barr <plan.b@bluesomatic.org> - 2015-10-13 14:07 +0000
                Re: OT: Wayland Ahem A Rivet's Shot <steveo@eircom.net> - 2015-10-13 16:55 +0100
                Re: OT: Wayland Mike Spencer <mds@bogus.nodomain.nowhere> - 2015-10-13 13:24 -0300
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-13 17:43 +0000
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-13 16:09 -0400
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-14 13:07 +0000
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-14 09:20 -0400
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-14 14:26 +0000
                Re: OT: Wayland Morten Reistad <first@last.name.invalid> - 2015-10-14 16:41 +0200
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-14 15:50 +0000
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-14 10:47 -0400
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-14 15:52 +0000
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-14 12:59 -0400
                Re: OT: Wayland Stephen Wolstenholme <steve@easynn.com> - 2015-10-14 14:45 +0100
                Re: OT: Wayland scott@slp53.sl.home (Scott Lurndal) - 2015-10-14 14:32 +0000
                Re: OT: Wayland Stephen Wolstenholme <steve@easynn.com> - 2015-10-12 13:05 +0100
                Re: OT: Wayland Dan Espen <despen@verizon.net> - 2015-10-12 08:31 -0400
                Re: OT: Wayland Stephen Wolstenholme <steve@easynn.com> - 2015-10-12 13:38 +0100
                Re: OT: Wayland Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-10-12 16:41 +0000
                Re: OT: Wayland Melzzzzz <mel@zzzzz.com> - 2015-10-12 18:15 +0200
                Re: OT: Wayland Huge <Huge@nowhere.much.invalid> - 2015-10-12 05:24 +0000
                Re: OT: Wayland Marko Rauhamaa <marko@pacujo.net> - 2015-10-12 00:19 +0300
                Re: OT: Wayland Rich <rich@example.invalid> - 2015-10-11 21:46 +0000
                Re: OT: systemd Dan Espen <despen@verizon.net> - 2015-10-11 13:24 -0400
                Re: OT: systemd Marko Rauhamaa <marko@pacujo.net> - 2015-10-12 00:25 +0300
                Re: OT: systemd Dan Espen <despen@verizon.net> - 2015-10-11 18:37 -0400
                Re: OT: systemd (was: [Poll] Computing favorities) Greymaus <mausg@mail.com> - 2015-10-10 19:38 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-10 18:08 -0500
                Re: [Poll] Computing favorities andrew@cucumber.demon.co.uk (Andrew Gabriel) - 2015-10-11 17:31 +0000
                Re: [Poll] Computing favorities Dan Espen <despen@verizon.net> - 2015-10-10 11:23 -0400
                Re: [Poll] Computing favorities Gordon Henderson <gordon+usenet@drogon.net> - 2015-10-10 17:34 +0000
                Re: [Poll] Computing favorities Roberto Waltman <usenet@rwaltman.com> - 2015-10-10 19:28 -0400
                Re: [Poll] Computing favorities Stan Barr <plan.b@bluesomatic.org> - 2015-10-11 07:12 +0000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-10 19:45 +0000
                Re: [Poll] Computing favorities Stan Barr <plan.b@bluesomatic.org> - 2015-10-10 07:12 +0000
                Re: [Poll] Computing favorities     wje@acm.org (Bill Evans) - 2015-10-10 00:39 -0700
                Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-10-10 09:16 -0400
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-10 10:11 -0400
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-10 18:21 -0500
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-11 10:55 -0400
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-10-11 04:45 +0000
                Re: [Poll] Computing favorities "John E. Davis" <jed@jedsoft.org> - 2015-10-12 17:53 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-10 18:01 -0500
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-10 23:57 +0000
                Re: [Poll] Computing favorities Rich <rich@example.invalid> - 2015-10-09 15:03 +0000
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-09 15:46 +0000
                Re: [Poll] Computing favorities Rich <rich@example.invalid> - 2015-10-09 16:30 +0000
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-09 18:15 +0000
                Re: [Poll] Computing favorities Rich <rich@example.invalid> - 2015-10-09 18:57 +0000
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-09 20:15 +0000
                Re: [Poll] Computing favorities     wje@acm.org (Bill Evans) - 2015-10-09 15:09 -0700
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-09 20:52 +0000
                Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-10-08 21:17 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-08 12:07 -0400
                Re: [Poll] Computing favorities JimP <solosam90@gmail.com> - 2015-10-08 13:15 -0500
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-10-08 05:14 +0000
                Re: [Poll] Computing favorities scott@slp53.sl.home (Scott Lurndal) - 2015-10-08 13:06 +0000
                Re: [Poll] Computing favorities Michael Black <et472@ncf.ca> - 2015-10-08 12:29 -0400
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-10-08 12:44 -0500
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-08 15:37 -0500
                Re: [Poll] Computing favorities Gene Wirchenko <genew@telus.net> - 2015-10-08 19:19 -0700
                Re: [Poll] Computing favorities "Osmium" <r124c4u102@comcast.net> - 2015-10-09 06:26 -0500
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-09 16:40 -0500
                Re: [Poll] Computing favorities Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-10-09 16:14 +0000
                Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-10-09 16:46 -0500
            Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-24 07:29 -0400
              Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-24 13:20 +0000
                Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-24 12:10 -0400
          Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-24 00:06 +0100
            Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 13:02 +1000
            Re: [Poll] Computing favorities Walter Banks <walter@bytecraft.com> - 2015-08-23 23:35 -0400
          Re: [Poll] Computing favorities Alan Bowler <atbowler@thinkage.ca> - 2015-10-07 12:19 -0400
        Re: [Poll] Computing favorities "Bill Cunningham" <nospan@nspam.invalid> - 2015-08-23 15:27 -0400
          Re: [Poll] Computing favorities Peter Flass <peter_flass@yahoo.com> - 2015-08-24 01:17 +0000
            Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 13:10 +1000
            Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-24 16:28 -0500
          Re: [Poll] Computing favorities "Charles Richmond" <numerist@aquaporin4.com> - 2015-08-24 16:27 -0500
        Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 05:48 +1000
          Re: [Poll] Computing favorities Bob Eager <news0005@eager.cx> - 2015-08-23 21:32 +0000
            Re: [Poll] Computing favorities "Santo Brown" <sb8743@gmail.com> - 2015-08-24 07:57 +1000
        Re: [Poll] Computing favorities Andrew Swallow <am.swallow@btinternet.com> - 2015-08-24 00:00 +0100
      Re: [Poll] Computing favorities Huge <Huge@nowhere.much.invalid> - 2015-08-23 21:18 +0000
  Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-23 11:31 -0700
    Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-23 12:08 -0700
    Re: [Poll] Computing favorities Anne & Lynn Wheeler <lynn@garlic.com> - 2015-08-24 08:22 -0700

csiph-web