<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: wizeman</title><link>https://news.ycombinator.com/user?id=wizeman</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 28 Apr 2026 22:25:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=wizeman" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by wizeman in "CVE-2020-19909 is everything that is wrong with CVEs"]]></title><description><![CDATA[
<p>> but typical compiler behaviors on UB are reasonably understood that I think its immediate effects are overstated<p>I don't dispute that usually the compiler and the compiled code behave like we expect. That is not under dispute.<p>What I am arguing is that sometimes, they don't behave like we expect. Instead, they behave in wildly different, unexpected, and unintuitive ways.<p>Since sometimes they don't behave like we expect, there is no way of knowing <i>for sure</i> what the effects of UB are without looking at the compiled binary code.<p>> So should we say that such code is also vulnerable or exploitable? It would be quite a stretch IMHO.<p>Sure, but in the case you are describing, the vulnerability is not in the safe code, because if the rest of the code was safe, then the safe code would not exacerbate anything.<p>In the OP's case, this is not true. The rest of curl could be 100% safe and yet, the bug described in the article could still be the cause of an exploitable security vulnerability.<p>And since the bug causes UB, there is no way to know for sure if the bug causes an exploitable security vulnerability or not just by looking at curl's source code, unlike what Daniel seems to be claiming.<p>> I expect Daniel Stenberg to actually write something akin to my comments when he dispute the CVE.<p>Sure. He should dispute the CVE and there is no reason to believe that the bug that he is describing has a security vulnerability.<p>But once again, his claim that the bug <i>does not cause</i> a security vulnerability is unsubstantiated.<p>The correct thing to say would be something like: "at this point, there is no reason to believe that the bug causes a security vulnerability".<p>He could even say that it's <i>extremely unlikely</i> for there to be one. But he cannot say <i>for sure</i> that there isn't one, just by looking at the source code.<p>The claims he is making contribute to proliferate misconceptions about the C language, C compilers and the security of C code, which unfortunately are too common.<p>> [1] E.g. <a href="https://marc.info/?l=llvm-dev&m=143589591927876&w=4" rel="nofollow noreferrer">https://marc.info/?l=llvm-dev&m=143589591927876&w=4</a><p>Thanks for the link!<p>I had never heard about Annex L.<p>I haven't read the Annex yet, but I suspect that actually achieving the goal of bounding the effects of UB is much, much harder than what it appears to be at first sight.<p>Right now, it is difficult or impossible to reason about the effects of UB in all cases because the tiniest assumption about the impossibility of a signed integer overflow can lead to an unbounded number of arbitrary, cascaded side effects.<p>Furthermore, I don't think this is something that can be easily fixed. The main reason for that is that exploiting these assumptions allows compilers to perform <i>significant</i> performance optimizations, and these performance optimizations are correlated with substantial transformations in the IR / compiled code, which sometimes leave the final compiled code unrecognizable compared to the source code.<p>If you'd prevent the compiler from performing just a single one of these optimizations, many significant real-world software projects and companies would immediately object to that, because it would have a significant performance impact in many important real-world code segments.<p>I'm talking about projects where a 5% performance degradation in some code segments can be considered a very significant regression.<p>In the end, the main way to stop UB from affecting compiled code in unexpected ways (in some cases, in extreme ways) is to actually <i>define</i> what happens on an integer overflow, or at least, leave it implementation-defined.<p>You cannot easily say "you can do whatever you want on integer overflows" while also saying "except the program may not crash just because of the overflow".<p>The latter is almost equivalent to saying "signed integer overflows must perform two's complement arithmetic", which is what Rust does.<p>Because any other behavior would basically be just as unintuitive as UB in some cases, and in fact, for you to preserve the existing optimizations, in the worst case the compiled code would have to behave differently depending on not only the surrounding source code, but also any arbitrary piece of code in the entire program (due to link-time optimizations).<p>The email you linked to even alludes to the Annex's naivety in terms of bounding the effects of UB:<p>> the Annex completely fails to be useful for the purpose you intend<p>> That really doesn't get you much of anything.<p>But really, all of this is completely beside the point. I was only trying to dispute a couple of Daniel's claims, which are too strongly-worded, without actually disagreeing with anything else that Daniel is saying.<p>I wouldn't even disagree with those claims if they were worded a bit less strongly.</p>
]]></description><pubDate>Mon, 28 Aug 2023 07:11:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=37290825</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=37290825</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37290825</guid></item><item><title><![CDATA[New comment by wizeman in "CVE-2020-19909 is everything that is wrong with CVEs"]]></title><description><![CDATA[
<p>> Integer overflows themselves are not significant, they have to be paired with other mechanisms to be actually vulnerable<p>No, that is not true. That's a misconception. Your sentence is true for <i>unsigned</i> integer overflows, but not for <i>signed</i> integer overflows, which are undefined behavior in C.<p>Compilers assume that signed overflows are not possible. They exploit that assumption to perform many significant and important code optimizations, which greatly improve performance. Those optimizations can cause the program behavior to change dramatically in the case that a signed overflow would happen.<p>In some cases, the compiled code behaves in ways that have nothing to do with how the program was written.<p>In extreme (but real, documented) cases it can have effects like:<p>1. Security vulnerabilities being introduced in the compiled code, even though the source code appears to be perfectly safe.<p>2. Code that isn't called anywhere to be called.<p>3. The program crashing even though the code looks completely safe, and in fact would have been perfectly safe if the optimizations hadn't been performed.<p>4. And many more.<p>These are not theoretical or hypothetical effects. They are real effects that have been demonstrated in real code compiled with widely used compilers (GCC and clang), in some cases in high-profile projects like the Linux kernel, glibc and OpenSSL.<p>> and Rust also agrees, whether overflow checks are enabled or not does not affect the memory safety<p>That's because in Rust, signed integer overflows are well-defined.<p>In C, they are not well-defined. They are undefined behavior.<p>> Unless reporters have figured out an ingenious way to exploit a single integer overflow, the OP's reaction is completely justified.<p>I agree! It is completely justified.<p>However, the OP's assertions that the code is perfectly safe because it looks like a harmless integer overflow and that anyone can take a look at the code and figure out that it's not a vulnerability, <i>are not justified</i>.<p>It would be OK to say that the bug is <i>unlikely</i> to be a vulnerability. But not that it is <i>not</i> a vulnerability, at least, not without a much deeper look into why it is not (which would likely include looking at the disassembled code under multiple platforms, multiple compilers and multiple compiler versions).<p>To be clear, I believe that the burden of proving whether the bug is (or is not) a vulnerability is not on the OP. I would say it would be on those who have assigned a high severity to the CVE.<p>But that still doesn't make the assertions written by the OP correct.</p>
]]></description><pubDate>Mon, 28 Aug 2023 03:38:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=37289440</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=37289440</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37289440</guid></item><item><title><![CDATA[New comment by wizeman in "CVE-2020-19909 is everything that is wrong with CVEs"]]></title><description><![CDATA[
<p>> The practical effect of this security bug is quite limited.<p>You are probably correct (although it's hard to say for sure that you've considered every single compiler optimization).<p>But even if you are correct, the point of the parent poster still stands:<p>> something that triggers undefined behavior in C is not to be dismissed as lightly as the article is doing.<p>I agree with this.<p>Notice how long your explanation was. The author of the article did not provide a similar explanation, or even an abbreviated one, in order to justify the claims that the bug does not have security implications. In fact, the author didn't even have to provide such an explanation, but he could have at least acknowledged the possibility, which could then be argued to be dismissable based on his (extensive) experience.<p>I'm not saying that there are security implications or that the burden of proving that there aren't any is on the author of the article.<p>I'm only agreeing with the parent poster that you cannot easily or simply claim that the bug is not a security vulnerability, without giving some consideration to the possible impact of UB, or at least acknowledging the possibility.<p>Not acknowledging this possible impact can in fact reinforce misconceptions about the security implications of bugs in C code that lead to UB.</p>
]]></description><pubDate>Sun, 27 Aug 2023 18:31:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=37285356</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=37285356</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37285356</guid></item><item><title><![CDATA[New comment by wizeman in "Intelligent people take longer to solve hard problems: study"]]></title><description><![CDATA[
<p>> needed more time to solve challenging tasks but made fewer errors [1]<p>As someone else said, I can solve problems very quickly if the solutions don't have to be correct...<p>But more seriously, it seems like different people might have different thresholds for when they consider a problem solved?<p>If you decide to go back and review the problem and solution (even just mentally) to make sure you didn't make mistakes, of course that would take longer and give you more correct answers than the person who doesn't do that?<p>[1] <a href="https://www.bihealth.org/en/notices/intelligent-brains-take-longer-to-solve-difficult-problems" rel="nofollow noreferrer">https://www.bihealth.org/en/notices/intelligent-brains-take-...</a></p>
]]></description><pubDate>Thu, 22 Jun 2023 18:37:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=36436752</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=36436752</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36436752</guid></item><item><title><![CDATA[New comment by wizeman in "Serotonin booster leads to increased functional brain connectivity"]]></title><description><![CDATA[
<p>> being a talented software engineer doesn't give you any ability to understand the nuances of neurochemistry.<p>This is a bit of a non-sequitur based on what you said before.<p>Being competent or a talented software engineer is correlated with being an intelligent person, which in turn is correlated with the ability to understand the nuances of [insert topic here].<p>That doesn't mean that being a talented software engineer <i>necessarily</i> gives you the ability to understand the nuances of neurochemistry, but it is suggestive that it does, if the engineer has an interest in neurochemistry.<p>Also, being an intelligent person doesn't necessarily mean that you are competent or have expertise in a certain area, sure, but that is not a "logical fallacy" as the GP was saying, nor has much to do with intelligence as he seemed to be arguing (or at least, "fluid intelligence", as it is often understood).<p>If he simply meant "being competent or an expert in a certain area" doesn't automatically mean that you are competent or an expert in another area, then sure, I agree, and it's true that many comments on Hacker News exhibit this pattern, and this observation is often justified.<p>But let's not also conveniently ignore the opposite pattern, where a (presumably intelligent) person that doesn't work in a certain field can also provide much better insights than many people with many years of expertise in that same field (especially in things like, say, interpreting scientific papers, which can be legitimately hard to do correctly, for many reasons).<p>I don't know if you've ever noticed this, but a significant percentage of people of almost every field, even with many years of expertise, is pretty damn incompetent... you just have to step outside your bubble if you don't think so.<p>This includes software engineering, BTW. There are many software engineers with years of experience who don't even know what a bug tracking system or what a source code management tool are (although, not all of them are incompetent, strictly speaking). That should tell you something.</p>
]]></description><pubDate>Wed, 14 Jun 2023 14:39:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=36326715</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=36326715</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36326715</guid></item><item><title><![CDATA[New comment by wizeman in "Serotonin booster leads to increased functional brain connectivity"]]></title><description><![CDATA[
<p>There's no such thing as "intelligence in one area", intelligence is a general ability. You're basically ignoring everything that psychology has studied regarding intelligence.</p>
]]></description><pubDate>Wed, 14 Jun 2023 11:31:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=36324271</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=36324271</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36324271</guid></item><item><title><![CDATA[New comment by wizeman in "Language models can explain neurons in language models"]]></title><description><![CDATA[
<p>That's probably one of the reasons why you'd use GPT-4 to explain GPT-2.<p>Of course, if you were trying to use GPT-4 to explain GPT-4 then I think the Gödel incompleteness theorem would be more relevant, and even then I'm not so sure.</p>
]]></description><pubDate>Tue, 09 May 2023 18:12:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=35878272</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=35878272</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35878272</guid></item><item><title><![CDATA[New comment by wizeman in "A deep-learning search for technosignatures from 820 nearby stars"]]></title><description><![CDATA[
<p>The Stargate SG-1 TV series has a similar, although not exactly identical, recurrent plot point (replicators). The show is well worth watching IMHO.</p>
]]></description><pubDate>Sun, 05 Mar 2023 11:49:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=35028772</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=35028772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35028772</guid></item><item><title><![CDATA[New comment by wizeman in "Users can run ChatGPT-like AI with data 'pods', says Tim Berners-Lee"]]></title><description><![CDATA[
<p>You probably don't even need to have the server in your premises.<p>Perhaps the server could be in some datacenter and you, as well as others, could use it remotely via the Internet.</p>
]]></description><pubDate>Fri, 17 Feb 2023 23:07:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=34841846</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34841846</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34841846</guid></item><item><title><![CDATA[Microsoft-backed OpenAI to let users customize ChatGPT]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.reuters.com/technology/microsoft-backed-openai-let-users-customize-chatgpt-2023-02-17/">https://www.reuters.com/technology/microsoft-backed-openai-let-users-customize-chatgpt-2023-02-17/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=34841819">https://news.ycombinator.com/item?id=34841819</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 17 Feb 2023 23:04:07 +0000</pubDate><link>https://www.reuters.com/technology/microsoft-backed-openai-let-users-customize-chatgpt-2023-02-17/</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34841819</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34841819</guid></item><item><title><![CDATA[New comment by wizeman in "Britons face 20k digital pound cap under Bank of England plan"]]></title><description><![CDATA[
<p>> Didn't Bitcoin lose half its value like 6 months ago?<p>Let's say the following statement is true: "If X is a scam then X's price eventually goes down". That doesn't necessarily make the converse statement true: "If X's price eventually goes down then X is a scam". This is a common logical fallacy. Those two statements are logically distinct propositions and if one is true, it doesn't necessarily make the other one true as well. This is just basic logic.<p>Which means that bitcoin's price going down does not necessarily mean that bitcoin is a scam.<p>Commodities' prices can fluctuate substantially. In October 2008, oil had lost more than 50% of its value in 3 months. [1]<p>In August 1999, gold had lost more than 70% of its value since its all-time-high in 1980. [2]<p>Would you also have said at those times that oil and gold are a scam because their value had gone down significantly?<p>(Cue the "but oil and gold are useful" responses, obliviating the fact that cryptocurrencies such as bitcoin are extremely useful in many ways, some of them unique, and that gold's industrial/ornamental utility does not justify its historical or current price by a long shot, but rather, its utility as an investment/store of value/wealth protection/diversification asset does).<p>[1] <a href="https://www.nytimes.com/2008/10/17/business/worldbusiness/17oil.html" rel="nofollow">https://www.nytimes.com/2008/10/17/business/worldbusiness/17...</a><p>[2] <a href="https://goldprice.org/gold-price-history.html" rel="nofollow">https://goldprice.org/gold-price-history.html</a></p>
]]></description><pubDate>Wed, 15 Feb 2023 15:04:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=34804750</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34804750</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34804750</guid></item><item><title><![CDATA[New comment by wizeman in "The More You Look for Spy Balloons, the More UFOs You’ll Find"]]></title><description><![CDATA[
<p>> At the very least, I would want to assume any civilization capable of interstellar travel to be at least 1000 years ahead of us, technologically.<p>My guess is that we'll be able to develop human-level artificial intelligence a lot sooner than 1000 years from now.<p>At which point it would be a lot easier to send AI probes to explore the galaxy and/or make first contact with another civilization than to build a generation ship.</p>
]]></description><pubDate>Tue, 14 Feb 2023 21:49:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=34796618</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34796618</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34796618</guid></item><item><title><![CDATA[New comment by wizeman in "Military shoots down another high-altitude object, over Lake Huron: officials"]]></title><description><![CDATA[
<p>We'll never know the weather again...</p>
]]></description><pubDate>Sun, 12 Feb 2023 22:05:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=34767602</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34767602</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34767602</guid></item><item><title><![CDATA[New comment by wizeman in "Show HN: Enc – A modern and friendly CLI alternative to GnuPG"]]></title><description><![CDATA[
<p>> 5. Rightfully mentions that you should not put a plaintext password on the CLI, then proceeds to recommend you use pass in a way that puts the password back in plaintext on the CLI via a subshell which is still totally plaintext in the proc filesystem, in ps, etc, to all processes on the system running as any user.<p>Not to mention that the password will also get stored in plaintext in the shell's history file if the shell is in interactive mode.</p>
]]></description><pubDate>Fri, 10 Feb 2023 14:36:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=34740132</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34740132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34740132</guid></item><item><title><![CDATA[New comment by wizeman in "OsmAnd 4.3 for Android devices"]]></title><description><![CDATA[
<p>If someone replaces the APK on their website with a compromised one, what prevents them from replacing the PGP signature with a signature created by the attacker?</p>
]]></description><pubDate>Fri, 27 Jan 2023 15:32:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=34547120</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34547120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34547120</guid></item><item><title><![CDATA[New comment by wizeman in "Ideas for finding ET are getting more inventive"]]></title><description><![CDATA[
<p>It's very rare and extremely interesting for me to read a well-argued opinion that is the polar opposite of mine.<p>Furthermore, I don't even have any good counter-arguments (at least not any that wouldn't just be pure speculation).<p>You definitely gave me something new to think about.<p>Thank you for your thoughts!</p>
]]></description><pubDate>Mon, 23 Jan 2023 18:57:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=34493278</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34493278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34493278</guid></item><item><title><![CDATA[New comment by wizeman in "An intutive counterexample to the axiom of choice"]]></title><description><![CDATA[
<p>The Flying Spaghetti Monster is also an interesting concept.<p>It can even be useful as a concept, in certain discussions/contexts.<p>Should we take the Flying Spaghetti Monster as a core axiom of our theories of physics?<p>Wouldn't this lead to us logically concluding for example, that there has to exist something else beyond the universe that we know about, even if this is not really true?<p>I mean, I know that I'm exaggerating and that the analogy is not necessarily very good.<p>But I'm also not entirely sure how different is the Flying Spaghetti Monster from the infinite objects that mathematicians talk about and that lead us to logically arrive at certain conclusions (that I would argue might not really be true, in terms of things we can understand).<p>I'm not saying that I'm right and that most mathematicians are wrong, necessarily. Perhaps it's just a linguistic issue, I don't know.</p>
]]></description><pubDate>Mon, 23 Jan 2023 18:20:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=34492755</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34492755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34492755</guid></item><item><title><![CDATA[New comment by wizeman in "An intutive counterexample to the axiom of choice"]]></title><description><![CDATA[
<p>> The biggest problem with finite sets is that most operations don't work nicely in finite sets.<p>I didn't necessarily mean to suggest that we should not work with infinite sets, only that perhaps we should not call them "sets" (so as to not confuse them with the finite ones), but rather something else, like "domains" or whatever.<p>So perhaps you could say that those commutative/associative operations are valid over the domain of natural numbers. But you couldn't say, "X" represents the cardinality of the set of natural numbers, because there's no such thing as the set of natural numbers.<p>Or, maybe the set of infinite natural numbers and infinite rationals makes sense but the set of real numbers doesn't (as they have different infinite properties?).<p>I don't know exactly what would be a better solution here, as I'm not a mathematician. I'm only trying to suggest that there might be a better solution than what we have right now, even if it would simply amount to just using different language and not necessarily changing the logical properties of the theory, so as to not arrive at confusing conclusions.<p>> But it is - you still can't, in practice, construct a useful program that depends on solving the "finite halting problem", since you will need too much memory/time for anything but the most trivial of examples.<p>But the decidability of the Halting problem is not actually a question of how long it takes for an algorithm to solve it, is it?<p>The decidability of a problem is a matter of whether it's actually possible <i>at all</i> to construct an algorithm that solves it, no matter how long the algorithm takes to solve it.<p>That is, whether this algorithm is computable and finishes in a <i>finite amount of steps</i>.<p>So I will say again that yes, the Halting problem is decidable, as long as you don't use an absurd model to answer the question (i.e. a model that does not represent anything that can possibly be built in our universe even in theory?).<p>The tortoise and hare algorithm solves the Halting problem for FSMs in a finite amount of time and it only needs twice the amount of storage as the underlying FSM that is being analyzed.<p>> If you don't beleive this, than it should be doable for you to create a program that checks whether P=NP if we limit it to programs that can run on, say, an 8086 processor and only use 16 KB of RAM, right?<p>The P=NP is a problem regarding the resources required during computation to solve a given problem, as far as I understand.<p>I am not entirely sure how exactly this relates to the decidability of the Halting problem when applied to finite-state machines, though.<p>I mean, it's clear that the currently-known algorithms that solve the Halting problem on FSMs, such as the tortoise and hare algorithm, in the worst case take a time to solve that is proportional to the cycle length of non-halting FSMs.<p>But also note that these currently-known cycle detection algorithms don't even try to analyze the FSM to decide whether it halts, except by testing their states for equality. This is due to the inherent definition of the cycle detection problem.<p>So they can definitely be made more efficient, perhaps for a large set of useful FSMs, even, as long as they would be allowed to inspect the FSM's state transition table. I'm not sure how efficient they could be, in theory.<p>I would be cautious in taking any computational complexity theory results at face value when we know that they use Turing machines as models, which can give you results that are the opposite of the results that apply to FSMs. But I'm not an expert and admittedly, I'm not entirely sure of what I'm talking about here.<p>Regardless, even if you can trust the computational complexity results, to me this is an entirely different question than the decidability of the Halting problem, which is a "yes/no" problem.</p>
]]></description><pubDate>Mon, 23 Jan 2023 17:33:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=34492048</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34492048</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34492048</guid></item><item><title><![CDATA[New comment by wizeman in "Ideas for finding ET are getting more inventive"]]></title><description><![CDATA[
<p>That's very interesting, thanks.<p>So you're saying that in such a scenario, it would be impossible for complex life to exist, even if it looks different from the complex life we have now?<p>I am just wondering whether we are not confusing "complex life as we've seen to exist" with "complex life that can possibly exist".<p>For example, I am wondering whether the Great Oxidation Event is not a counterexample where we had a run-away biological process that caused a mass extinction (which, if it were possible for us to be alive at the time, might have looked like it would be impossible to recover from) but still lead to complex life existing despite oxygen being so toxic (at least from the point of view of the kind of life that existed at the time).<p>I know this is not the best example, as at the time complex life didn't exist yet. But I'm wondering if it wouldn't have been possible for complex life to exist in an oxygen-poor environment. Well, in fact some multicellular species that exist today are anaerobic and therefore do thrive without oxygen, right? Perhaps such anaerobic life would have evolved a lot more if our atmosphere had never been oxygenated.<p>Unfortunately I know nothing about the examples you mentioned, so I can't tell whether they are comparable.<p>Edit: I just read a bit about the carbonate-silicate cycle and I think I know what you mean now. Yes, if surface temperatures were more extreme it would indeed be quite difficult for complex life to exist (at the surface, at least). After all, some limits to the existence of interesting life must surely exist and temperature does seem like an inherent one.</p>
]]></description><pubDate>Mon, 23 Jan 2023 16:07:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=34490552</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34490552</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34490552</guid></item><item><title><![CDATA[New comment by wizeman in "An intutive counterexample to the axiom of choice"]]></title><description><![CDATA[
<p>I can't really give a substantial response to your first argument, as I'm not certain about all the implications that you mention.<p>Your second argument, though, doesn't sound very convincing to me.<p>There are many possible consistent logical frameworks (perhaps an infinite amount of them? hah!) that are clearly not adequate for describing our universe. Or at least, they wouldn't make sense for us.<p>For a trivial (and perhaps stupid) example, consider an alternate universe where we decided to use a logical framework which can represent natural numbers, but where the digit "2" is represented as "9" and the digit "9" is represented as "7", etc. Let's say you have a 1-to-1 mapping from one digit to another, compared to our usual representation.<p>Or perhaps the mapping is a lot more complicated than that, and not just about digits, but about entire numbers.<p>Let's say we decided to do that, for no good reason. Or maybe there was a good reason at the time, but since then we have figured out that it doesn't make sense anymore.<p>Yes, you could do exactly the same math in this logical framework as we do in our usual ones, and no contradictions would arise.<p>However, would that really be a wise idea? Wouldn't that just lead to making unnecessary mistakes, sometimes even conceptual ones, when considering that we would be prone to confusing numbers in this system with the numbers that we use normally?<p>I think language is also important here, not just logical soundness. Especially if we want our intuitions to be helpful.<p>Just to bring this back to something less abstract again, I will just mention the following:<p>> However, the core of the argument remains true, we just need to complicate it significantly if we want to remain within the realm of finite machines: instead of saying "there is no TM that can decide if any arbitrary TM halts", we need to say something like "there is no finite TM that can decide if any TM smaller than itself halts in an amount of time less than that TM".<p>Well, I don't believe the core of the Halting problem to be true, and that's exactly the language problem that I'm talking about: confusing language leads us to making conceptual mistakes.<p>For example, time is not necessarily relevant here.<p>I could argue that what the Halting problem really demonstrates is that to analyze whether a finite-state machine (FSM) halts, you need to use an FSM that can have more state than the machine being analyzed (which is why it stops working if you believe you can have infinite state).<p>This FSM with more state would always be able to decide whether the other FSM halts in finite time, regardless of whether the other machine halts or whether it never does.<p>In fact, that's exactly what cycle-detection algorithms do, such as the tortoise and hare algorithm.</p>
]]></description><pubDate>Mon, 23 Jan 2023 15:16:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=34489766</link><dc:creator>wizeman</dc:creator><comments>https://news.ycombinator.com/item?id=34489766</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34489766</guid></item></channel></rss>