Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.theory > #133468
| From | Kaz Kylheku <643-408-1753@kylheku.com> |
|---|---|
| Newsgroups | comp.theory, sci.logic, sci.math, comp.ai.philosophy |
| Subject | Re: "there will still be a nested simulation tower" Kaz |
| Date | 2025-10-23 01:22 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <20251022181134.504@kylheku.com> (permalink) |
| References | (21 earlier) <10dbd5g$sbbj$3@dont-email.me> <20251022131901.397@kylheku.com> <10dbkvh$uiit$1@dont-email.me> <20251022161242.398@kylheku.com> <10dbp3g$vsj5$1@dont-email.me> |
Cross-posted to 4 groups.
On 2025-10-22, olcott <polcott333@gmail.com> wrote:
> On 10/22/2025 6:15 PM, Kaz Kylheku wrote:
>> On 2025-10-22, olcott <polcott333@gmail.com> wrote:
>>> On 10/22/2025 3:20 PM, Kaz Kylheku wrote:
>>>> On 2025-10-22, olcott <polcott333@gmail.com> wrote:
>>>>> On 10/22/2025 2:52 PM, Kaz Kylheku wrote:
>>>>>> On 2025-10-22, André G Isaak <agisaak@gm.invalid> wrote:
>>>>>>> On 2025-10-22 12:40, Kaz Kylheku wrote:
>>>>>>>> But that entire bundle is one fixed case DD, with a single behavior,
>>>>>>>> which is a property of DD, which is a finite string.
>>>>>>>
>>>>>>> I think part of the problem here is that Olcott doesn't grasp that the
>>>>>>> "finite string input" DD *must* include as a substring the entire
>>>>>>> description of HHH.
>>>>>>
>>>>>> Furthermore, he doesn't get that it doesn't literally have to be HHH,
>>>>>> but the same algorithm: a workalike.
>>>>>>
>>>>>> The HHH analyzing DD's halting could be in C, while the HHH
>>>>>> called by DD could be in Python.
>>>>>
>>>>> DD does call HHH(DD) in recursive simulation
>>>>> and you try to get away with lying about it.
>>>>
>>>> I'm saying that's not a requirement in the halting problem.
>>>>
>>>> DD does not have to use that implementation of HHH; it can have
>>>> its own clean-room implementation and it can be in any language.
>>>>
>>>> But nonetheless, yes, there will still be a nested simulation tower.
>>>>
>>>
>>> Thus proving that DD correctly simulated by HHH
>>> cannot possibly reach its own simulated final halt
>>> state no matter what HHH does.
>>
>> I explained that a nested simulation tower is two dimensional.
>>
>> One dimension is the simulation level, the nesting itself;
>> that goes out to infinity.
>
> Great. Thus the input to HHH(DD) specifies behavior
> such that the correctly simulated DD cannot possibly
> reach its own simulated final halt state.
People replying to you respond to multiple points. Yet you typically
only read one point of a response.
You snipped all this:
>> Due to the aborting behavior of HHH,
>> it is not actually realized in simulation; we have to step
>> through the aborted simulations to keep it going.
>>
>> The other dimension is the execution /within/ the simulations.
>> That can be halting or non-halting.
>>
>> In the HHH(DD) simulation tower, though that is infinite,
>> the simulations are halting.
>>
>> I said that before. Your memory of that has vaporized, and you have now
>> focused only on my statement that the simluation tower is infinite.
>>
>> The depth of the simulation tower, and the halting of the simulations
>> within that tower, are independent phenomena.
>>
>> A decider must not mistake one for the other.
There being endless nested simulations doesn't imply that the
simulations are nonterminating.
If we simply do this:
void fun(void)
{
sim_t s = simulation_create(fun);
return;
}
we get an infinite tower of simulations, all of which terminate.
When fun() is called, it creates a simulation beginning at fun.
No step of this simulation is performed, yet it exists.
Then fun terminates.
No simulation has actually started, but we have a simuation
state which implies an infnite tower.
If the simulation s abandoned by fun is stepped, then soon,
inside that simulation, fun wil be called, and will create another
simulation and exit.
Then if we simulate that the same thing will happen.
Suppose the simulation_create module provides a simulate_run
function which identifies all/any unfinished simulations and
runs them.
Then if we do this:
int main()
{
fun();
simulate_run();
}
simulate_run() will get into an infinite loop inside of
which it is always completing simulations of fun, which
are creating new simulations.
That won't even run out of memory because it's not recursion.
simulation_create() dynamically allocates a simulation. If
simulation_run() calls simulation_destroy() whenever it detects that it
has completed a simulation, then I think thesituation can hit a steady
state; it runs forever, continuously launching and terminating
simulations.
But we cannot call fun itself non-halting. It has facilitated
the infinite generation of simulations, but is itself halting.
--
TXR Programming Language: http://nongnu.org/txr
Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
Mastodon: @Kazinator@mstdn.ca
Back to comp.theory | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-18 13:44 -0700
Re: lol. An AI response to Olcott... dart200 <user7160@newsgrouper.org.invalid> - 2025-10-18 18:03 -0700
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-18 20:08 -0500
Re: lol. An AI response to Olcott... Tristan Wibberley <tristan.wibberley+netnews2@alumni.manchester.ac.uk> - 2025-10-19 16:12 +0100
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-19 12:27 -0700
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-20 04:39 +0100
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-19 23:18 -0500
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-20 13:04 -0700
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-21 18:47 +0100
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 14:12 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 14:15 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 14:37 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 15:03 -0700
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-22 00:08 +0100
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 16:57 -0700
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-22 01:43 +0100
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-22 01:48 +0100
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 20:00 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 20:46 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-21 20:49 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 12:33 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 13:28 -0700
Re: lol. An AI response to Olcott... Is Provable Correct olcott <polcott333@gmail.com> - 2025-10-21 20:43 -0500
Re: lol. An AI response to Olcott... Is Provable Correct "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 12:18 -0700
Re: lol. An AI response to Olcott... Tristan Wibberley <tristan.wibberley+netnews2@alumni.manchester.ac.uk> - 2025-10-20 12:30 +0100
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-20 10:04 -0500
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-20 13:07 -0700
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-19 04:08 +0100
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-18 23:19 -0500
Re: lol. An AI response to Olcott... Mike Terry <news.dead.person.stones@darjeeling.plus.com> - 2025-10-19 17:05 +0100
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-19 11:31 -0500
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-18 23:01 -0500
Re: lol. An AI response to Olcott... Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-19 19:39 +0000
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-20 10:28 -0500
Re: lol. An AI response to Olcott... Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-20 18:29 +0000
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-20 15:32 -0500
Re: lol. An AI response to Olcott... Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-20 21:03 +0000
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-20 18:58 -0500
Re: lol. An AI response to Olcott... Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-21 01:27 +0000
Re: lol. An AI response to Olcott... olcott <polcott333@gmail.com> - 2025-10-20 20:33 -0500
Re: lol. An AI response to Olcott... Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-21 02:11 +0000
Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-20 22:00 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-20 23:05 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-20 22:13 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-20 23:16 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-20 22:25 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-20 23:29 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-21 03:20 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-20 22:29 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 06:56 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 08:25 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 07:48 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 09:00 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 08:47 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 09:50 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 09:25 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 15:04 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 10:08 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 15:38 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 10:40 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 15:53 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 11:13 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 18:55 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 13:30 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 13:34 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 08:43 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 09:46 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 15:40 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 10:47 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 17:07 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 12:11 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 13:38 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 18:40 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 André G. Isaak <agisaak@gm.invalid> - 2025-10-22 13:24 -0600
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:30 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:31 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Richard Heathfield <rjh@cpax.org.uk> - 2025-10-22 20:34 +0100
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 19:52 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:00 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 20:20 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:35 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 16:43 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST olcott <polcott333@gmail.com> - 2025-10-22 16:12 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 14:32 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST dbush <dbush.mobile@gmail.com> - 2025-10-22 17:50 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 23:01 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST olcott <polcott333@gmail.com> - 2025-10-23 09:55 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 --- NST Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 16:47 +0000
"there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 12:22 -0500
Re: "there will still be a nested simulation tower" Kaz "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-23 11:50 -0700
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 21:11 +0000
Re: "there will still be a nested simulation tower" Kaz joes <noreply@example.org> - 2025-10-23 21:33 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 17:14 -0500
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 23:41 +0000
Re: "there will still be a nested simulation tower" Kaz joes <noreply@example.org> - 2025-10-24 07:34 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-24 02:47 -0500
Re: "there will still be a nested simulation tower" Kaz joes <noreply@example.org> - 2025-10-24 12:04 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-24 09:54 -0500
Re: "there will still be a nested simulation tower" Kaz Mikko <mikko.levanto@iki.fi> - 2025-10-25 15:36 +0300
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-25 15:30 -0500
Re: "there will still be a nested simulation tower" Kaz "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-25 13:34 -0700
Re: "there will still be a nested simulation tower" Kaz Mikko <mikko.levanto@iki.fi> - 2025-10-26 14:03 +0200
Re: "there will still be a nested simulation tower" Kaz joes <noreply@example.org> - 2025-10-28 15:39 +0000
D simulated by H cannot possibly reach past its own first line olcott <polcott333@gmail.com> - 2025-10-28 11:40 -0500
"there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 17:08 -0500
Re: "there will still be a nested simulation tower" Kaz "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-23 15:21 -0700
Re: "there will still be a nested simulation tower" Kaz "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-23 15:26 -0700
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-23 18:40 -0400
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 17:48 -0500
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-23 19:09 -0400
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 23:55 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 19:00 -0500
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 23:45 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-23 18:51 -0500
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-23 20:14 -0400
"there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-22 17:14 -0500
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-22 18:33 -0400
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 23:15 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-22 18:24 -0500
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-22 20:14 -0400
Re: "there will still be a nested simulation tower" Kaz Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 01:22 +0000
Re: "there will still be a nested simulation tower" Kaz olcott <polcott333@gmail.com> - 2025-10-22 20:47 -0500
Re: "there will still be a nested simulation tower" Kaz dbush <dbush.mobile@gmail.com> - 2025-10-22 22:13 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Julio Di Egidio <julio@diegidio.name> - 2025-10-23 08:02 +0200
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-23 09:51 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:55 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 16:24 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 21:55 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 18:54 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:00 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 19:27 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:31 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:32 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 19:37 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:45 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:45 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 19:56 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:04 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 22:02 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 17:07 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 23:12 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 19:46 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-23 02:47 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 22:12 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-23 13:09 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:41 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:44 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:45 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:46 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:28 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 19:55 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:01 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 21:56 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 17:00 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 23:04 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:25 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:29 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-22 19:30 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 14:43 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 15:45 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 20:17 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:32 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 14:38 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-22 13:10 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-22 20:15 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-22 15:30 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-22 13:36 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-28 08:35 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 09:36 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 16:33 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 11:49 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-28 14:23 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 19:04 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-28 12:19 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-28 16:01 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-28 17:50 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 15:51 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-28 17:58 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Richard Heathfield <rjh@cpax.org.uk> - 2025-10-29 03:16 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 22:26 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-28 23:34 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 05:45 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Richard Damon <Richard@Damon-Family.org> - 2025-10-29 07:32 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 13:31 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 16:35 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 12:13 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-28 18:32 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 13:46 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-28 19:28 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 15:53 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-28 21:06 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 16:14 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:31 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 19:37 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 15:57 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-28 21:09 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 16:22 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 21:43 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 16:53 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 22:03 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 17:08 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 22:18 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-28 17:59 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 22:14 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 17:28 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-28 23:52 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 19:01 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 00:25 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 19:33 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-28 17:56 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-28 17:57 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 02:19 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-28 21:43 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Richard Damon <Richard@Damon-Family.org> - 2025-10-28 23:07 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 05:36 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 11:12 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 17:21 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 14:38 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 15:16 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-29 18:21 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 14:13 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 15:13 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-11-03 14:12 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-11-03 10:20 -0600
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-11-03 17:06 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-11-03 11:22 -0600
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-11-03 17:26 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-11-03 11:55 -0600
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Mr Flibble <flibble@red-dwarf.jmc.corp> - 2025-11-03 17:57 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 Kaz Kylheku <643-408-1753@kylheku.com> - 2025-11-03 20:29 +0000
Addressing duffer-speak olcott <polcott333@gmail.com> - 2025-11-03 14:46 -0600
Re: Addressing duffer-speak Kaz Kylheku <643-408-1753@kylheku.com> - 2025-11-03 20:59 +0000
Re: Addressing duffer-speak olcott <polcott333@gmail.com> - 2025-11-03 15:03 -0600
Re: Addressing duffer-speak "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-11-03 13:00 -0800
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-29 09:47 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 08:40 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-29 14:12 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 11:15 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-29 16:37 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 11:54 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-29 17:24 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 12:37 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-29 13:44 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 12:55 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 dbush <dbush.mobile@gmail.com> - 2025-10-29 15:42 -0400
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 joes <noreply@example.org> - 2025-10-29 17:49 +0000
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 13:00 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:15 -0700
fuck chris dart200 <user7160@newsgrouper.org.invalid> - 2025-10-29 14:17 -0700
Re: fuck chris olcott <polcott333@gmail.com> - 2025-10-29 16:44 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 olcott <polcott333@gmail.com> - 2025-10-29 14:53 -0500
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:14 -0700
fuck chris dart200 <user7160@newsgrouper.org.invalid> - 2025-10-29 14:16 -0700
Re: fuck chris "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:40 -0700
Re: fuck chris dart200 <user7160@newsgrouper.org.invalid> - 2025-10-29 14:42 -0700
Re: fuck chris "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 15:22 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:11 -0700
Re: Never any actual rebuttal to HHH(DD)==0 Since 10/13/2022 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-10-29 14:29 -0700
Re: lol. An AI response to Olcott... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-11-14 22:02 -0800
csiph-web