473,486 Members | 1,953 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Solution to the halting Problem?

117 7097
On Mon, 02 Aug 2004 23:04:43 GMT, "Peter Olcott"
<ol****@worldnet.att.net> wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

> > You constantly mix up the Halting Problem theorem with its proof.
> >

The Halting Problem is directly derived from its proof.
If the proof is shown to be in error, then the Halting Problem
(which is only derived from the proof) ceases to exist.


No, you fool, it would become an unsolved problem, it wouldn't "cease
to exist". But it is a solved problem - it is impossible to write a
halt analyser.

Tom
Jul 22 '05 #101

"tom_usenet" <to********@hotmail.com> wrote in message news:ct********************************@4ax.com...
On Mon, 02 Aug 2004 23:04:43 GMT, "Peter Olcott"
<ol****@worldnet.att.net> wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

> > You constantly mix up the Halting Problem theorem with its proof.
> >

The Halting Problem is directly derived from its proof.
If the proof is shown to be in error, then the Halting Problem
(which is only derived from the proof) ceases to exist.


No, you fool, it would become an unsolved problem, it wouldn't "cease
to exist". But it is a solved problem - it is impossible to write a
halt analyser.

Tom


And you make this statement after careful consideration of my
position (which is not even posted on the newsgroup) ?
Assumptions are no form of correct reasoning.
Jul 22 '05 #102

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

Nope. The Halting Problem is the problem of not being able to correctly determine
if every program halts. As soon as a method is determined to circumvent the
particular restriction, then the Halting Problem is not a problem. A problem that is
not a problem is a problem no more.


You might want to first educate yourself what you are talking about. That is:
What is the question, commonly referred to as the 'Halting Problem', before
continuing to spread nonsense.
--
Karl Heinz Buchegger
kb******@gascad.at


Well my textbook seems to agree with you. This doesn't effect what I
am saying very much. I have disproved the proof of the Halting Problem,
then. It is a relatively minor semantical distinction.
Jul 22 '05 #103

"David Hilsee" <da*************@yahoo.com> wrote in message news:d7********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:wn********************@bgtnsc05-news.ops.worldnet.att.net...
Everyone keeps bring up that point because your last assertion is bollocks. To produce the contradictory input source, one can take the logic from the source code of the analyzer and use it to construct input that will cause it to contradict its own logic.
First of all it will not contradict its own logic, it will merely fail to

return a result
that would otherwise cause a contradiction.


Yes, it will contradict its own logic. I don't even know what you mean by
"fail to return a result". If you're talking about returning that UNKNOWN
value/displaying "security problem", then forget it, because that is not an
acceptable answer from the analyzer because it means that the analyzer has
failed to process the input correctly. If you do not see how the analyzer


Yes you would be correct here. I have completely redesigned my method
and eliminated that path. What I am talking about here is that the Halting
analyzer can see when its result is being used to change the behavior of the
program being analyzed, thus changing the analysis. In those cases where
it detects this, it provides its own differing behavior to correspond to this.
It refrains from returning a result in those cases where this result is used
to change the behavior of the program being analyzed. Since is still does
return the correct value in every other case, it can still determine this correct
value for this program.

01) int WillHalt(string SourceCode, string DataInput)
02) {
03) if (TheProgramHalts(SourceCode, DataInput))
04) return 1; // also means true in C/C++
05) else
06) return 0; // also means false in C/C++
07) }

08) void LoopIfHalts(string SourceCode, string DataInput)
09) {
10) if (WillHalt(SourceCode, DataInput))
11) while(true)
12) ;
13) else
14) return;
15) }

16) cout << WillHalt(LoopIfHalts, LoopIfHalts);

Line 16 returns the correct result for LoopIfHalts, whereas line 10
returns no result at all.

can be forced to contradict its own logic, then you do not understand the
proof. I have posted a URL (http://www.cgl.uwaterloo.ca/~csk/halt/) that
explains the problem very well, so please read that page as many times as is
necessary for you to understand why it can contradict itself.

The contradiction is very simple:

If the analyzer says the "trick" input program will halt, then, because of
the stolen, embedded logic, that conclusion will imply that it would have
said the program will not halt.

If the analyzer says the "trick" input program will not halt, then, because
of the stolen, embedded logic, that conclusion will imply that it would have
said the program will halt.

The analyzer cannot reach a conclusion that avoids an obvious contradiction.
To be considered a solution, the analyzer is required to determine if any
input halts or does not halt. Therefore, it is not a solution to the halting
problem.

You cannot address this "trick" program by embedding output statements or
making absurd statements about potential errors introduced by return codes.
Also, you cannot address this "trick" program by claiming that the analyzer
will detect if it is analyzing a modified copy of itself and change its
answer accordingly, because that same "answer changing" logic will be
embedded inside the input, which will cause the contradiction once again.

--
David Hilsee

Jul 22 '05 #104
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:%f*********************@bgtnsc04-news.ops.worldnet.att.net...

"David Hilsee" <da*************@yahoo.com> wrote in message news:d7********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:wn********************@bgtnsc05-news.ops.worldnet.att.net...
> Everyone keeps bring up that point because your last assertion is

bollocks.
> To produce the contradictory input source, one can take the logic
from the
> source code of the analyzer and use it to construct input that will

cause it
> to contradict its own logic.

First of all it will not contradict its own logic, it will merely fail
to return a result
that would otherwise cause a contradiction.


Yes, it will contradict its own logic. I don't even know what you mean by "fail to return a result". If you're talking about returning that UNKNOWN value/displaying "security problem", then forget it, because that is not an acceptable answer from the analyzer because it means that the analyzer has failed to process the input correctly. If you do not see how the analyzer
Yes you would be correct here. I have completely redesigned my method
and eliminated that path. What I am talking about here is that the Halting
analyzer can see when its result is being used to change the behavior of the program being analyzed, thus changing the analysis. In those cases where
it detects this, it provides its own differing behavior to correspond to this. It refrains from returning a result in those cases where this result is used to change the behavior of the program being analyzed. Since is still does
return the correct value in every other case, it can still determine this correct value for this program.

01) int WillHalt(string SourceCode, string DataInput)
02) {
03) if (TheProgramHalts(SourceCode, DataInput))
04) return 1; // also means true in C/C++
05) else
06) return 0; // also means false in C/C++
07) }

08) void LoopIfHalts(string SourceCode, string DataInput)
09) {
10) if (WillHalt(SourceCode, DataInput))
11) while(true)
12) ;
13) else
14) return;
15) }

16) cout << WillHalt(LoopIfHalts, LoopIfHalts);

Line 16 returns the correct result for LoopIfHalts, whereas line 10
returns no result at all.


At line 10, WillHalt() returns no result at all? What on earth does that
mean? How does it perform this magic? Also, how does not returning a
result avoid an admission of failure? If calling WillHalt(SourceCode,
DataInput) will not yield the correct answer, the program is not a solution
to the halting problem, because it is required to return the correct answer
for all inputs.
You cannot address this "trick" program by embedding output statements or making absurd statements about potential errors introduced by return codes. Also, you cannot address this "trick" program by claiming that the analyzer will detect if it is analyzing a modified copy of itself and change its
answer accordingly, because that same "answer changing" logic will be
embedded inside the input, which will cause the contradiction once

again.

Please keep the above in mind.

--
David Hilsee
Jul 22 '05 #105
Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:
Nope. The Halting Problem is the problem of not being able to correctly determine
if every program halts. As soon as a method is determined to circumvent the
particular restriction, then the Halting Problem is not a problem. A problem that is
not a problem is a problem no more.


You might want to first educate yourself what you are talking about. That is:
What is the question, commonly referred to as the 'Halting Problem', before
continuing to spread nonsense.
--
Karl Heinz Buchegger
kb******@gascad.at


Well my textbook seems to agree with you.


After all ...
This doesn't effect what I
am saying very much.
It affects it in every possible way
I have disproved the proof of the Halting Problem,
then.
You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,
is to show that in some of the steps to come up with that proof there
is a logical flaw. But that's all. At the moment you modify the
original proof, you are no longer disproving it.
It is a relatively minor semantical distinction.


It is all the difference between: There is a Halt Analazer and
there is none. I wouldn't call that 'minor'.
--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #106

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:
I have disproved the proof of the Halting Problem,
then.


You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.
is to show that in some of the steps to come up with that proof there
is a logical flaw. But that's all. At the moment you modify the
original proof, you are no longer disproving it.
It is a relatively minor semantical distinction.


It is all the difference between: There is a Halt Analazer and
there is none. I wouldn't call that 'minor'.
--
Karl Heinz Buchegger
kb******@gascad.at

Jul 22 '05 #107

"David Hilsee" <da*************@yahoo.com> wrote in message news:r8********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:%f*********************@bgtnsc04-news.ops.worldnet.att.net...

01) int WillHalt(string SourceCode, string DataInput)
02) {
03) if (TheProgramHalts(SourceCode, DataInput))
04) return 1; // also means true in C/C++
05) else
06) return 0; // also means false in C/C++
07) }

08) void LoopIfHalts(string SourceCode, string DataInput)
09) {
10) if (WillHalt(SourceCode, DataInput))
11) while(true)
12) ;
13) else
14) return;
15) }

16) cout << WillHalt(LoopIfHalts, LoopIfHalts);

Line 16 returns the correct result for LoopIfHalts, whereas line 10
returns no result at all.
At line 10, WillHalt() returns no result at all? What on earth does that
mean? How does it perform this magic? Also, how does not returning a


Its not magic at all. It merely can't be accomplished on current C++
compilers. The current compilers require you to either return a value
or refrain from returning a value all the time. If they were modified
such that you could return a value or not, then the semantics of the
program would still be coherent. The meaning of testing a return value
would always provide an untrue result. Thus if WillHalt was tested,
it would not test as true. What actually might more sense would be
to have a Boolean with three values: True, False, and Neither.
result avoid an admission of failure? If calling WillHalt(SourceCode,
DataInput) will not yield the correct answer, the program is not a solution
to the halting problem, because it is required to return the correct answer
for all inputs.
You cannot address this "trick" program by embedding output statements or making absurd statements about potential errors introduced by return codes. Also, you cannot address this "trick" program by claiming that the analyzer will detect if it is analyzing a modified copy of itself and change its
answer accordingly, because that same "answer changing" logic will be
embedded inside the input, which will cause the contradiction once

again.

Please keep the above in mind.

--
David Hilsee

Jul 22 '05 #108
Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

I have disproved the proof of the Halting Problem,
then.


You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.


You did not.
You assumed that it can be solved (that a WillHalt() can exist) and
then used that WillHalt in some other function and claimed some
magic to circumvent the problem of applying this function on itself.
From this you conclude that the assumed WillHalt() function can exist.
But you are still left with an assumed WillHalt() function not a real
one. Up to know you have not shown anything of importance.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #109
On Thu, 05 Aug 2004 12:03:39 GMT, "Peter Olcott"
<ol****@worldnet.att.net> wrote:

"David Hilsee" <da*************@yahoo.com> wrote in message news:r8********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:%f*********************@bgtnsc04-news.ops.worldnet.att.net...
>
> 01) int WillHalt(string SourceCode, string DataInput)
> 02) {
> 03) if (TheProgramHalts(SourceCode, DataInput))
> 04) return 1; // also means true in C/C++
> 05) else
> 06) return 0; // also means false in C/C++
> 07) }
>
> 08) void LoopIfHalts(string SourceCode, string DataInput)
> 09) {
> 10) if (WillHalt(SourceCode, DataInput))
> 11) while(true)
> 12) ;
> 13) else
> 14) return;
> 15) }
>
> 16) cout << WillHalt(LoopIfHalts, LoopIfHalts);
>
> Line 16 returns the correct result for LoopIfHalts, whereas line 10
> returns no result at all.


At line 10, WillHalt() returns no result at all? What on earth does that
mean? How does it perform this magic? Also, how does not returning a


Its not magic at all. It merely can't be accomplished on current C++
compilers. The current compilers require you to either return a value
or refrain from returning a value all the time. If they were modified
such that you could return a value or not, then the semantics of the
program would still be coherent. The meaning of testing a return value
would always provide an untrue result. Thus if WillHalt was tested,
it would not test as true. What actually might more sense would be
to have a Boolean with three values: True, False, and Neither.


What is a TM that neither halts nor doesn't halt?

Tom
Jul 22 '05 #110
Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

I have disproved the proof of the Halting Problem,
then.


You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.


You: All odd numbers are prime.
We: That's not true, 15 is odd, but it is not prime
You: That doesn't matter, 5 is also odd and is prime, thus
I have shown one example, thus my claim is true.
--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #111
Karl Heinz Buchegger wrote:

Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

> I have disproved the proof of the Halting Problem,
> then.

You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.


You: All odd numbers are prime.
We: That's not true, 15 is odd, but it is not prime
You: That doesn't matter, 5 is also odd and is prime, thus
I have shown one example, thus my claim is true.


I take that back.
The analogy doesn't hold.
One that holds is:

Turing: There is an interesting question: Are all odd numbers prime?
We: No. Because there is 15. 15 is odd but is not prime, because of 5*3 = 15
You: 5 is odd and is prime. Thus all odd numbers are prime.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #112

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:
> I have disproved the proof of the Halting Problem,
> then.

You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.


You did not.
You assumed that it can be solved (that a WillHalt() can exist) and
then used that WillHalt in some other function and claimed some
magic to circumvent the problem of applying this function on itself.


Its not at all magic. It is nothing that is not obvious to the above
average programmer, at least once it is pointed out. It is clear
that one invocation differs from that other. It doesn't even take
a genius to see this. All the Halt Analyzer does is take advantage
of this clear difference.
From this you conclude that the assumed WillHalt() function can exist.
But you are still left with an assumed WillHalt() function not a real
one. Up to know you have not shown anything of importance.
Except that the fundamental basis for the proof that solving the
Halting Problem is incorrect.
--
Karl Heinz Buchegger
kb******@gascad.at

Jul 22 '05 #113

"tom_usenet" <to********@hotmail.com> wrote in message news:9q********************************@4ax.com...
On Thu, 05 Aug 2004 12:03:39 GMT, "Peter Olcott"
<ol****@worldnet.att.net> wrote:

"David Hilsee" <da*************@yahoo.com> wrote in message news:r8********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:%f*********************@bgtnsc04-news.ops.worldnet.att.net...
>
> 01) int WillHalt(string SourceCode, string DataInput)
> 02) {
> 03) if (TheProgramHalts(SourceCode, DataInput))
> 04) return 1; // also means true in C/C++
> 05) else
> 06) return 0; // also means false in C/C++
> 07) }
>
> 08) void LoopIfHalts(string SourceCode, string DataInput)
> 09) {
> 10) if (WillHalt(SourceCode, DataInput))
> 11) while(true)
> 12) ;
> 13) else
> 14) return;
> 15) }
>
> 16) cout << WillHalt(LoopIfHalts, LoopIfHalts);
>
> Line 16 returns the correct result for LoopIfHalts, whereas line 10
> returns no result at all.

At line 10, WillHalt() returns no result at all? What on earth does that
mean? How does it perform this magic? Also, how does not returning a


Its not magic at all. It merely can't be accomplished on current C++
compilers. The current compilers require you to either return a value
or refrain from returning a value all the time. If they were modified
such that you could return a value or not, then the semantics of the
program would still be coherent. The meaning of testing a return value
would always provide an untrue result. Thus if WillHalt was tested,
it would not test as true. What actually might more sense would be
to have a Boolean with three values: True, False, and Neither.


What is a TM that neither halts nor doesn't halt?

Tom


That is what apparently tricked everyone for all these years.
There is no TM that neither halts nor doesn't halt. There is a TM
that does not halt if a halt analyzer determines that it does, and
does halt if a halt analyzer determines that it doesn't. To solve
this problem, merely refrain from speaking with the deceitful TM.
If the only time that the Halt Analyzer refrains from returning
a value is when this value is used to change the behavior, and thus
change the analysis of the TM being analyzed, then even this TM
can be correctly analyzed.
Jul 22 '05 #114

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message news:41***************@gascad.at...
Peter Olcott wrote:

> I have disproved the proof of the Halting Problem,
> then.

You have not.
You presented something else. Remember: one keypoint in your
'proof' was the inability of returning a value. Thus you have
modified the original proof. For showing that a proof is incorrect,
you are not allowed to modify the proof. The only thing you can do,


All I have to do is to take the original problem and show that the conclusion
based on the proof, that this problem can not possibly be solved is incorrect.
To show that this problem can be solved, I merely have to derive one way
to solve it. I did that.


You: All odd numbers are prime.
We: That's not true, 15 is odd, but it is not prime
You: That doesn't matter, 5 is also odd and is prime, thus
I have shown one example, thus my claim is true.
--
Karl Heinz Buchegger
kb******@gascad.at


I have shown that the one single example that "proves" the Halting
Problem can not possibly be solved, is not an example that the
Halting Problem can not be solved. This is not at all analogous to
what you claimed.
Jul 22 '05 #115
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:Lt*********************@bgtnsc04-news.ops.worldnet.att.net...
That is what apparently tricked everyone for all these years.
There is no TM that neither halts nor doesn't halt. There is a TM
that does not halt if a halt analyzer determines that it does, and
does halt if a halt analyzer determines that it doesn't. To solve
this problem, merely refrain from speaking with the deceitful TM.
If the only time that the Halt Analyzer refrains from returning
a value is when this value is used to change the behavior, and thus
change the analysis of the TM being analyzed, then even this TM
can be correctly analyzed.


Unfortunately, your comment is just a crafty way of saying that the analyzer
can ignore certain "trickier" inputs and still claim to be a solution to the
halting problem. If that's the case, then this is a solution to the halting
problem:

int WillHalt( string source, string input ) {
// It's tricky, so give up. Someone is trying to deceive me!
return UNKNOWN;
}

--
David Hilsee
Jul 22 '05 #116

"David Hilsee" <da*************@yahoo.com> wrote in message news:Fu********************@comcast.com...
"Peter Olcott" <ol****@worldnet.att.net> wrote in message
news:Lt*********************@bgtnsc04-news.ops.worldnet.att.net...
That is what apparently tricked everyone for all these years.
There is no TM that neither halts nor doesn't halt. There is a TM
that does not halt if a halt analyzer determines that it does, and
does halt if a halt analyzer determines that it doesn't. To solve
this problem, merely refrain from speaking with the deceitful TM.
If the only time that the Halt Analyzer refrains from returning
a value is when this value is used to change the behavior, and thus
change the analysis of the TM being analyzed, then even this TM
can be correctly analyzed.


Unfortunately, your comment is just a crafty way of saying that the analyzer
can ignore certain "trickier" inputs and still claim to be a solution to the
halting problem. If that's the case, then this is a solution to the halting
problem:

int WillHalt( string source, string input ) {
// It's tricky, so give up. Someone is trying to deceive me!
return UNKNOWN;
}

--
David Hilsee


Yet the crucial difference between my halt analyzer and yours is that
my halt analyzer works for all possible inputs, including the deceitful
program. It merely does not work on all possible invocations. Your
program will not work on all possible inputs.

My program directly contradicts this National Institute of Standards and
Technology definition of the Halting Problem, and yours does not.

No program can ever be written to determine whether any arbitrary
program will halt

http://www.nist.gov/dads/HTML/haltingProblem.html

Jul 22 '05 #117
Yet the crucial difference between my halt analyzer and yours is that
my halt analyzer works for all possible inputs, including the deceitful
program. It merely does not work on all possible invocations. Your
program will not work on all possible inputs.


Therein is a crucial flaw in your argument. If your analyzer can use
information about the method or source of invocation, then that information
is an INPUT to the analyzer! So your analyzer does NOT work for all
possible inputs.

-Howard


Jul 22 '05 #118

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

31
1897
by: Peter Olcott | last post by:
The Halting Problem can not be solved within the degree of expressability of a TM. My solution only worked because of its more limited degree of expressability. There is no such thing as a void...
0
7099
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6964
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5430
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4864
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3069
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3070
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
598
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
262
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.