Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

To understand a program you must become both the machine and the program.


devel / comp.lang.c / Re: Are my reviewers dishonest or technically incompetent ?

SubjectAuthor
* Are my reviewers dishonest or technically incompetent ?olcott
`* Re: Are my reviewers dishonest or technically incompetent ?olcott
 `* Re: Are my reviewers dishonest or technically incompetent ?Freethinker
  `* Re: Are my reviewers dishonest or technically incompetent ?olcott
   +- Re: Are my reviewers dishonest or technically incompetent ?Richard Damon
   `* Re: Are my reviewers dishonest or technically incompetent ?Mark Bluemel
    `* Re: Are my reviewers dishonest or technically incompetent ?olcott
     `- Re: Are my reviewers dishonest or technically incompetent ?Mark Bluemel

1
Are my reviewers dishonest or technically incompetent ?

<4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21720&group=comp.lang.c#21720

  copy link   Newsgroups: comp.theory comp.ai.philosophy comp.lang.c comp.lang.c++
Followup: comp.theory,comp.ai.philosophy,comp.software-eng,sci.logic
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sun, 22 May 2022 13:00:32 -0500
Date: Sun, 22 May 2022 13:00:31 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.9.0
Newsgroups: comp.theory,comp.ai.philosophy,comp.lang.c,comp.lang.c++
Content-Language: en-US
Followup-To: comp.theory,comp.ai.philosophy,comp.software-eng,sci.logic
From: NoO...@NoWhere.com (olcott)
Subject: Are my reviewers dishonest or technically incompetent ?
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
Lines: 219
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-CSVKCR8kwJb1+jmwqqAUAbGUqnr6OGu48P5Pg0UYY6gWIHUmvi1wHAxN6zN6GN17ZjzPD1oGki1lY5K!DsU0gNNoqn5wk+iq4L2JTD0e2KIN4nA2ZoPAQgY3Td947tA5n+4TJn0kWt/qs+i2+fj6ibI5Ge4=
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 10972
 by: olcott - Sun, 22 May 2022 18:00 UTC

That H(P,P)==0 is easily verified as correct by reverse engineering what
the behavior of the input to H(P,P) would be if we assume that H
performs a pure x86 emulation of its input. The x86 source-code of P
specifies everything that we need to know to do this.

It is dead obvious that when H(P,P) correctly emulates its input that
the first 7 instructions of P are emulated.

It is also dead obvious that when P calls H(P,P) that H emulates the
first 7 instructions of P again.

This makes it dead obvious that the correct x86 emulation of the input
to H(P,P) never reaches its last instruction and halts.

Because all of my reviewers have consistently denied this easily
verified fact for six months it seems unreasonable to believe that this
is an honest mistake.

This is an explanation of a key new insight into the halting problem
provided in the language of software engineering. Technical computer
science terms are explained using software engineering terms.

To fully understand this paper a software engineer must be an expert in:
the C programming language, the x86 programming language, exactly how C
translates into x86 and the ability to recognize infinite recursion at
the x86 assembly language level. No knowledge of the halting problem is
required.

The computer science term “halting” means that a Turing Machine
terminated normally reaching its last instruction known as its “final
state”. This is the same idea as when a function returns to its caller
as opposed to and contrast with getting stuck in an infinite loop or
infinite recursion.

In computability theory, the halting problem is the problem of
determining,
from a description of an arbitrary computer program and an input,
whether
the program will finish running, or continue to run forever. Alan
Turing proved
in 1936 that a general algorithm to solve the halting problem for
all possible
program-input pairs cannot exist.

For any program H that might determine if programs halt, a
"pathological"
program P, called with some input, can pass its own source and its
input to
H and then specifically do the opposite of what H predicts P will
do. No H
can exist that handles this case.
https://en.wikipedia.org/wiki/Halting_problem

Technically a halt decider is a program that computes the mapping from a
pair of input finite strings to its own accept or reject state based on
the actual behavior specified by these finite strings. In other words
it determines whether or not its input would halt and returns 0 or 1
accordingly.

Computable functions are the basic objects of study in
computability theory.
Computable functions are the formalized analogue of the intuitive
notion of
algorithms, in the sense that a function is computable if there
exists an algorithm
that can do the job of the function, i.e. given an input of the
function domain it
can return the corresponding output.
https://en.wikipedia.org/wiki/Computable_function

The most definitive way to determine the actual behavior of the actual
input is to simply simulate this input and watch its behavior. This is
the ultimate measure of the actual behavior of the input. A simulating
halt decider (SHD) simulates its input and determines the halt status of
this input on the basis of the behavior of this correctly simulated of
its input.

The x86utm operating system was created so that all of the details of
the the halting problem counter-example could be examined at the much
higher level of abstraction of the C/x86 computer languages. It is based
on a very powerful x86 emulator.

The function named P was defined to do the opposite of whatever H
reports that it will do. If H(P,P) reports that its input halts, P
invokes an infinite loop. If H(P,P) reports that its input is
non-halting, P immediately halts.

The technical computer science term "halt" means that a program will
reach its last instruction technically called its final state. For P
this would be its machine address [0000136c].

H simulates its input one x86 instruction at a time using an x86
emulator. As soon as H(P,P) detects the same infinitely repeating
pattern (that we can all see), it aborts its simulation and rejects its
input.

Anyone that is an expert in the C programming language, the x86
programming language, exactly how C translates into x86 and what an x86
processor emulator is can easily verify that the correctly simulated
input to H(P,P) by H specifies a non-halting sequence of configurations.

Software engineering experts can reverse-engineer what the correct x86
emulation of the input to H(P,P) would be for one emulation and one
nested emulation thus confirming that the provided execution trace is
correct. They can do this entirely on the basis of the x86 source-code
for P with no need to see the source-code or execution trace of H.

The function named H continues to simulate its input using an x86
emulator until this input either halts on its own or H detects that it
would never halt. If its input halts H returns 1. If H detects that its
input would never halt H returns 0.

#include <stdint.h>
#define u32 uint32_t

void P(u32 x)
{ if (H(x, x))
HERE: goto HERE;
return;
}

int main()
{ Output("Input_Halts = ", H((u32)P, (u32)P));
}

_P()
[00001352](01) 55 push ebp
[00001353](02) 8bec mov ebp,esp
[00001355](03) 8b4508 mov eax,[ebp+08]
[00001358](01) 50 push eax // push P
[00001359](03) 8b4d08 mov ecx,[ebp+08]
[0000135c](01) 51 push ecx // push P
[0000135d](05) e840feffff call 000011a2 // call H
[00001362](03) 83c408 add esp,+08
[00001365](02) 85c0 test eax,eax
[00001367](02) 7402 jz 0000136b
[00001369](02) ebfe jmp 00001369
[0000136b](01) 5d pop ebp
[0000136c](01) c3 ret
Size in bytes:(0027) [0000136c]

_main()
[00001372](01) 55 push ebp
[00001373](02) 8bec mov ebp,esp
[00001375](05) 6852130000 push 00001352 // push P
[0000137a](05) 6852130000 push 00001352 // push P
[0000137f](05) e81efeffff call 000011a2 // call H
[00001384](03) 83c408 add esp,+08
[00001387](01) 50 push eax
[00001388](05) 6823040000 push 00000423 // "Input_Halts = "
[0000138d](05) e8e0f0ffff call 00000472 // call Output
[00001392](03) 83c408 add esp,+08
[00001395](02) 33c0 xor eax,eax
[00001397](01) 5d pop ebp
[00001398](01) c3 ret
Size in bytes:(0039) [00001398]

machine stack stack machine assembly
address address data code language
======== ======== ======== ========= =============
....[00001372][0010229e][00000000] 55 push ebp
....[00001373][0010229e][00000000] 8bec mov ebp,esp
....[00001375][0010229a][00001352] 6852130000 push 00001352 // push P
....[0000137a][00102296][00001352] 6852130000 push 00001352 // push P
....[0000137f][00102292][00001384] e81efeffff call 000011a2 // call H

Begin Local Halt Decider Simulation Execution Trace Stored at:212352
....[00001352][0021233e][00212342] 55 push ebp // enter P
....[00001353][0021233e][00212342] 8bec mov ebp,esp
....[00001355][0021233e][00212342] 8b4508 mov eax,[ebp+08]
....[00001358][0021233a][00001352] 50 push eax // push P
....[00001359][0021233a][00001352] 8b4d08 mov ecx,[ebp+08]
....[0000135c][00212336][00001352] 51 push ecx // push P
....[0000135d][00212332][00001362] e840feffff call 000011a2 // call H
....[00001352][0025cd66][0025cd6a] 55 push ebp // enter P
....[00001353][0025cd66][0025cd6a] 8bec mov ebp,esp
....[00001355][0025cd66][0025cd6a] 8b4508 mov eax,[ebp+08]
....[00001358][0025cd62][00001352] 50 push eax // push P
....[00001359][0025cd62][00001352] 8b4d08 mov ecx,[ebp+08]
....[0000135c][0025cd5e][00001352] 51 push ecx // push P
....[0000135d][0025cd5a][00001362] e840feffff call 000011a2 // call H
Local Halt Decider: Infinite Recursion Detected Simulation Stopped

H sees that P is calling the same function from the same machine address
with identical parameters, twice in sequence. This is the infinite
recursion (infinitely nested simulation) non-halting behavior pattern.

....[00001384][0010229e][00000000] 83c408 add esp,+08
....[00001387][0010229a][00000000] 50 push eax
....[00001388][00102296][00000423] 6823040000 push 00000423 //
"Input_Halts = "
---[0000138d][00102296][00000423] e8e0f0ffff call 00000472 // call Output
Input_Halts = 0
....[00001392][0010229e][00000000] 83c408 add esp,+08
....[00001395][0010229e][00000000] 33c0 xor eax,eax
....[00001397][001022a2][00100000] 5d pop ebp
....[00001398][001022a6][00000004] c3 ret
Number_of_User_Instructions(1)
Number of Instructions Executed(15892) = 237 pages

The correct simulation of the input to H(P,P) and the direct execution
of P(P) are not computationally equivalent thus need not have the same
halting behavior.


Click here to read the complete article
Re: Are my reviewers dishonest or technically incompetent ?

<dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21985&group=comp.lang.c#21985

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Mon, 13 Jun 2022 18:50:31 -0500
Date: Mon, 13 Jun 2022 18:50:31 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
Subject: Re: Are my reviewers dishonest or technically incompetent ?
Content-Language: en-US
Newsgroups: comp.lang.c
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com>
Lines: 44
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-E19ekqRZe3dsB7CZQcZOsCbYtO32Nq5urSYXCG2CL/j0740ExqR2vKe0tYMbV4UHOJlqU31DXDIRoCF!SHJjo/QWPdroIfFpO8fsGTKXTN/3VjR+Xwz6IpOwPGwjr4bAeAgjE1P9uzamBVI4CucaV1XiD9kU
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 2467
 by: olcott - Mon, 13 Jun 2022 23:50 UTC

On 6/13/2022 6:42 PM, Skybuck Flying wrote:
> So what are you writing about ?
>
> That H can now detect basically "self-referencing' and can thus escape the halting problem/trick from Alan Turning :) ?
>
> Bye,
> Skybuck.

Yes that is exactly it. It has taken me since 2004 to convert my
intuitions into fully operational code.

void P(u32 x)
{ if (H(x, x))
HERE: goto HERE;
return;
}

int main()
{ Output("Input_Halts = ", H((u32)P, (u32)P));
}

For any program H that might determine if programs halt, a
"pathological"
program P, called with some input, can pass its own source and its
input to
H and then specifically do the opposite of what H predicts P will
do. No H
can exist that handles this case.
https://en.wikipedia.org/wiki/Halting_problem

Halting problem undecidability and infinitely nested simulation (V5)

https://www.researchgate.net/publication/359984584_Halting_problem_undecidability_and_infinitely_nested_simulation_V5

--
Copyright 2022 Pete Olcott

"Talent hits a target no one else can hit;
Genius hits a target no one else can see."
Arthur Schopenhauer

Re: Are my reviewers dishonest or technically incompetent ?

<t8b13i$kir$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21986&group=comp.lang.c#21986

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!aioe.org!oRVmATwXCsedZkhOxCHJnw.user.46.165.242.91.POSTED!not-for-mail
From: freethin...@mymail.com (Freethinker)
Newsgroups: comp.lang.c
Subject: Re: Are my reviewers dishonest or technically incompetent ?
Date: Wed, 15 Jun 2022 00:12:02 +0200
Organization: Aioe.org NNTP Server
Message-ID: <t8b13i$kir$1@gioia.aioe.org>
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
<dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="21083"; posting-host="oRVmATwXCsedZkhOxCHJnw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: de-DE
 by: Freethinker - Tue, 14 Jun 2022 22:12 UTC

On 14.06.22 01:50, olcott wrote:
> On 6/13/2022 6:42 PM, Skybuck Flying wrote:
>> So what are you writing about ?
>>
>> That H can now detect basically "self-referencing' and can thus escape
>> the halting problem/trick from Alan Turning :) ?
>>
>> Bye,
>>    Skybuck.
>
> Yes that is exactly it. It has taken me since 2004 to convert my
> intuitions into fully operational code.
>

Yhuuuupppiiiii! He has had his review!!!

Re: Are my reviewers dishonest or technically incompetent ?

<6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21987&group=comp.lang.c#21987

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!1.us.feeder.erje.net!feeder.erje.net!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Tue, 14 Jun 2022 17:26:49 -0500
Date: Tue, 14 Jun 2022 17:26:48 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
Subject: Re: Are my reviewers dishonest or technically incompetent ?
Content-Language: en-US
Newsgroups: comp.lang.c
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
<dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com> <t8b13i$kir$1@gioia.aioe.org>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <t8b13i$kir$1@gioia.aioe.org>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
Lines: 30
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-eTrvdimK3xSykMuddYwy8MzwN2aLeJeWVJEKMjY9ZN3sr80IKbs5a25SE9OuFJXCdf+ImpecBFf+Zqs!Uf6tUsVhUhP+gVfLK87bldCaaQ1KGp2698cRwuNCVsacG3U1dNeAFCvyOc4o8/mtu9kP+zkG8EOz
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 2233
 by: olcott - Tue, 14 Jun 2022 22:26 UTC

On 6/14/2022 5:12 PM, Freethinker wrote:
> On 14.06.22 01:50, olcott wrote:
>> On 6/13/2022 6:42 PM, Skybuck Flying wrote:
>>> So what are you writing about ?
>>>
>>> That H can now detect basically "self-referencing' and can thus
>>> escape the halting problem/trick from Alan Turning :) ?
>>>
>>> Bye,
>>>    Skybuck.
>>
>> Yes that is exactly it. It has taken me since 2004 to convert my
>> intuitions into fully operational code.
>>
>
>
> Yhuuuupppiiiii! He has had his review!!!

It has taken one year a dozen different forums many dozens of reviewers
and thousands of messages to get one reviewer that does not either dodge
the question or lie about the correct answer.

I need at least two more reviews.

--
Copyright 2022 Pete Olcott

"Talent hits a target no one else can hit;
Genius hits a target no one else can see."
Arthur Schopenhauer

Re: Are my reviewers dishonest or technically incompetent ?

<gwbqK.6$dh2.0@fx46.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21988&group=comp.lang.c#21988

  copy link   Newsgroups: comp.lang.c
Followup: comp.theory
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx46.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.10.0
Subject: Re: Are my reviewers dishonest or technically incompetent ?
Content-Language: en-US
Newsgroups: comp.lang.c
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
<dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com> <t8b13i$kir$1@gioia.aioe.org>
<6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
Followup-To: comp.theory
In-Reply-To: <6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 40
Message-ID: <gwbqK.6$dh2.0@fx46.iad>
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Tue, 14 Jun 2022 22:31:37 -0400
X-Received-Bytes: 2467
 by: Richard Damon - Wed, 15 Jun 2022 02:31 UTC

On 6/14/22 6:26 PM, olcott wrote:
> On 6/14/2022 5:12 PM, Freethinker wrote:
>> On 14.06.22 01:50, olcott wrote:
>>> On 6/13/2022 6:42 PM, Skybuck Flying wrote:
>>>> So what are you writing about ?
>>>>
>>>> That H can now detect basically "self-referencing' and can thus
>>>> escape the halting problem/trick from Alan Turning :) ?
>>>>
>>>> Bye,
>>>>    Skybuck.
>>>
>>> Yes that is exactly it. It has taken me since 2004 to convert my
>>> intuitions into fully operational code.
>>>
>>
>>
>> Yhuuuupppiiiii! He has had his review!!!
>
> It has taken one year a dozen different forums many dozens of reviewers
> and thousands of messages to get one reviewer that does not either dodge
> the question or lie about the correct answer.
>
> I need at least two more reviews.
>

If you HAVE found someone to agree with your, that doesn't actually
prove anything.

Your "proof" is going to need to be able to stand up to actual community
scrutiny.

FInding a couple of people you can con into beleiving your lies isn't
going to get you anywhere, unless they happen to be the Journal
Publishers, and then that Journel is likely not very good, or is going
to get overwhelmed with responses pointing out the errors.

Until you can form an ACTUAL rebutal to all the core errors found in
your arguement, all you are going to prove is your ignorance.

Re: Are my reviewers dishonest or technically incompetent ?

<d8f1cb11-27be-49f4-8e07-016a4de1d520n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21989&group=comp.lang.c#21989

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:adf:e196:0:b0:219:f3c7:fd88 with SMTP id az22-20020adfe196000000b00219f3c7fd88mr8714520wrb.402.1655280371786;
Wed, 15 Jun 2022 01:06:11 -0700 (PDT)
X-Received: by 2002:ac8:5d49:0:b0:305:2a4f:141 with SMTP id
g9-20020ac85d49000000b003052a4f0141mr7763387qtx.525.1655280371602; Wed, 15
Jun 2022 01:06:11 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!pasdenom.info!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.128.88.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.c
Date: Wed, 15 Jun 2022 01:06:11 -0700 (PDT)
In-Reply-To: <6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a00:23c7:a280:3401:56:4261:9855:8f42;
posting-account=3LA7mQoAAAByiBtHIUvpFq0_QEKnHGc9
NNTP-Posting-Host: 2a00:23c7:a280:3401:56:4261:9855:8f42
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com> <dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com>
<t8b13i$kir$1@gioia.aioe.org> <6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d8f1cb11-27be-49f4-8e07-016a4de1d520n@googlegroups.com>
Subject: Re: Are my reviewers dishonest or technically incompetent ?
From: mark.blu...@gmail.com (Mark Bluemel)
Injection-Date: Wed, 15 Jun 2022 08:06:11 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Mark Bluemel - Wed, 15 Jun 2022 08:06 UTC

On Tuesday, 14 June 2022 at 23:27:09 UTC+1, olcott wrote:

> I need at least two more reviews.

I suggest you approach Professor Fir and Rick Hodgin.

Re: Are my reviewers dishonest or technically incompetent ?

<jfqdnXiqA91PMTT_nZ2dnUU7_81g4p2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21990&group=comp.lang.c#21990

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Wed, 15 Jun 2022 04:56:33 -0500
Date: Wed, 15 Jun 2022 04:56:34 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
Subject: Re: Are my reviewers dishonest or technically incompetent ?
Content-Language: en-US
Newsgroups: comp.lang.c
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com>
<dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com> <t8b13i$kir$1@gioia.aioe.org>
<6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
<d8f1cb11-27be-49f4-8e07-016a4de1d520n@googlegroups.com>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <d8f1cb11-27be-49f4-8e07-016a4de1d520n@googlegroups.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <jfqdnXiqA91PMTT_nZ2dnUU7_81g4p2d@giganews.com>
Lines: 15
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-alsacoeuEQsCKE9d9rDVToUr7VFEPfVej9vVSLVrmZQjs5jHC+85lycYKJrpVSzwvS81KHFPlkWWZT+!OILqT8pmmdA/xQg6K5wy51/w68hJbQOR7w0Bi2XUpXXSYmqILJU6g5/hBpcWKYyH2XDhAKtA0+rZ
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 1850
 by: olcott - Wed, 15 Jun 2022 09:56 UTC

On 6/15/2022 3:06 AM, Mark Bluemel wrote:
> On Tuesday, 14 June 2022 at 23:27:09 UTC+1, olcott wrote:
>
>> I need at least two more reviews.
>
> I suggest you approach Professor Fir and Rick Hodgin.

Who is that?

--
Copyright 2022 Pete Olcott

"Talent hits a target no one else can hit;
Genius hits a target no one else can see."
Arthur Schopenhauer

Re: Are my reviewers dishonest or technically incompetent ?

<7c9ad39d-6820-4959-b51e-3e3b8b5d4146n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21991&group=comp.lang.c#21991

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:a05:600c:35c2:b0:39b:fa1f:4f38 with SMTP id r2-20020a05600c35c200b0039bfa1f4f38mr3482270wmq.22.1655363965258;
Thu, 16 Jun 2022 00:19:25 -0700 (PDT)
X-Received: by 2002:a05:620a:d89:b0:6a7:a5b9:9410 with SMTP id
q9-20020a05620a0d8900b006a7a5b99410mr2462709qkl.630.1655363965017; Thu, 16
Jun 2022 00:19:25 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.128.87.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.c
Date: Thu, 16 Jun 2022 00:19:24 -0700 (PDT)
In-Reply-To: <jfqdnXiqA91PMTT_nZ2dnUU7_81g4p2d@giganews.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a00:23c7:a280:3401:68de:4ad4:d2cf:ef7d;
posting-account=3LA7mQoAAAByiBtHIUvpFq0_QEKnHGc9
NNTP-Posting-Host: 2a00:23c7:a280:3401:68de:4ad4:d2cf:ef7d
References: <4_adnW5_44_d5xf_nZ2dnUU7_83NnZ2d@giganews.com>
<d058c48b-098f-4a5c-9e79-afea6c4ede4cn@googlegroups.com> <dqmdnTWn69vaUDr_nZ2dnUU7_83NnZ2d@giganews.com>
<t8b13i$kir$1@gioia.aioe.org> <6rOdnQ0dr4u3ljT_nZ2dnUU7_83NnZ2d@giganews.com>
<d8f1cb11-27be-49f4-8e07-016a4de1d520n@googlegroups.com> <jfqdnXiqA91PMTT_nZ2dnUU7_81g4p2d@giganews.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <7c9ad39d-6820-4959-b51e-3e3b8b5d4146n@googlegroups.com>
Subject: Re: Are my reviewers dishonest or technically incompetent ?
From: mark.blu...@gmail.com (Mark Bluemel)
Injection-Date: Thu, 16 Jun 2022 07:19:25 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Mark Bluemel - Thu, 16 Jun 2022 07:19 UTC

On Wednesday, 15 June 2022 at 10:56:53 UTC+1, olcott wrote:
> On 6/15/2022 3:06 AM, Mark Bluemel wrote:
> > On Tuesday, 14 June 2022 at 23:27:09 UTC+1, olcott wrote:
> >
> >> I need at least two more reviews.
> >
> > I suggest you approach Professor Fir and Rick Hodgin.
> Who is that?

Two denizens of the web, intellectual peers of Starbuck, and worthy of equal respect.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor