<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: unexpectedtrap</title><link>https://news.ycombinator.com/user?id=unexpectedtrap</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 10 Sep 2026 19:13:00 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=unexpectedtrap" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by unexpectedtrap in "Show HN: What if the speed of light was 5 km/h?"]]></title><description><![CDATA[
<p>That’s just the aberration, no? I.e., you can simply smash A and observe some rotation. Since there are no non-collinear accelerations in this case, it’s certainly not the required effect (which is called Wigner rotation).<p>In the sources I see that the acceleration is applied simply by utilizing a velocity‐addition formula (see <a href="https://github.com/dbrant/relativity/blob/fcc20fb18381959ac234dadffa3ae4102aa136d4/js/app.js#L183" rel="nofollow">https://github.com/dbrant/relativity/blob/fcc20fb18381959ac2...</a>), so no Wigner rotation appears. I guess all the fancy stuff related to how time passes in an accelerating frame (like <a href="https://en.wikipedia.org/wiki/Twin_paradox#Difference_in_elapsed_times:_how_to_calculate_it_from_the_ship" rel="nofollow">https://en.wikipedia.org/wiki/Twin_paradox#Difference_in_ela...</a>) is also wrong in this simulation because of that.<p>You can however observe a mathematically equivalent effect in hyperbolic games, e.g., in Hyperbolica. Hyperbolica even has a quest about rotating a chest by moving it along the axes. On the hyperbolic plane it’s of course not about acceleration but about a winding number you’re doing around some point, but it’s still fun.</p>
]]></description><pubDate>Thu, 10 Sep 2026 12:55:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49642966</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=49642966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49642966</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Stop Making TUIs"]]></title><description><![CDATA[
<p>Plan 9 is essentially exactly that, which clearly was inspired by the Oberon’s GUI. By the way, does then Emacs count as such? Or maybe you should take a look at Genera, however, I’ve never really tried it.<p>Also the original Metro design as in WP 7/8/8.1 or Windows 8/8.1 relied heavily on the pure text, and the only place populated with a lot of icons was that iconic tiled start screen, although this is probably not what you mean.</p>
]]></description><pubDate>Sat, 22 Aug 2026 13:29:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49399574</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=49399574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49399574</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Claude Fable produced a counterexample to the Jacobian Conjecture"]]></title><description><![CDATA[
<p>Using LLMs to generate piles of code and/or proofs of dubious quality is very questionable thing, and I understand these non-stop debates about it.<p>But in this case, as using plain brute force is already quite a common thing in searching for counterexamples, using LLMs as a sort of more advanced brute force seems to be just the right thing to do, so I struggle to understand so much hostility to this approach.</p>
]]></description><pubDate>Mon, 20 Jul 2026 12:09:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48977646</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=48977646</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48977646</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A perfectable programming language"]]></title><description><![CDATA[
<p>>I would expect it to require a proof that 1 - 2 is non-negative. That's kind of the raison d'etre of Lean isn't it?<p>The reason is to be able to write mathematical proofs, including proofs about your code, but not to attach proofs to every single function. This definition of subtraction does not prevent you from reasoning about it and requiring `a ≥ b` in the proofs/code for which this is really important.<p>>Requiring explicit proofs for every subtraction was presumably seen as too onerous.<p>Lean can deduce proofs implicitly as well. It’s just not a very reliable mechanism. That is, imagine your code breaking after an update, because Lean suddenly can’t deduce `a ≥ b` automatically for you anymore.<p>>Which is fine... BUT they then should have said "so we're going to define a more convenient operator which is LIKE subtraction but isn't actually standard subtraction, and therefore we won't use the standard subtraction notation for it".<p>What is a standard subtraction over natural numbers at all? As you know, under a standard addition natural numbers form a monoid but not a group.</p>
]]></description><pubDate>Mon, 13 Apr 2026 16:48:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47754738</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47754738</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47754738</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A perfectable programming language"]]></title><description><![CDATA[
<p>>It definitely is a bad convention because it's highly surprising.<p>You know that `Nat` represents non-negative numbers, and you see that `1 - 2` does not produce a compile error. What value do you expect then? What’s so surprising about choosing zero as a default value here? Do you expect it to panic or what?</p>
]]></description><pubDate>Mon, 13 Apr 2026 14:19:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47752367</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47752367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47752367</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A perfectable programming language"]]></title><description><![CDATA[
<p>No, it’s still linked dynamically and its kernel is still in C++ (see <a href="https://github.com/leanprover/lean4/tree/master/src/kernel" rel="nofollow">https://github.com/leanprover/lean4/tree/master/src/kernel</a>, this part of a codebase has hardly changed since Lean 3). Almost all the space in the package (more than 2.5 GiB) is taken up by .olean/.ilean/.ir files, approximately 1 GiB of which is generated from the code of Lean’s frontend itself (i.e., parser, elaborator, core tactics, and so on) and the other 1 GiB from a standard library. As you might guess, these files are IR and essentially a compiled Lean’s environment (something like a Lisp image), so that Lean can load them straight up without recompiling and rechecking everything.<p>There were some proposals like compressing all the .olean files, but (as far as I know) none of them were implemented. Well, even if some proposals were implemented, their contribution was effectively negated anyway.</p>
]]></description><pubDate>Mon, 13 Apr 2026 12:35:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=47751090</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47751090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47751090</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A perfectable programming language"]]></title><description><![CDATA[
<p>Who said that it should be a compile time error? That’s just a convention, and this is definitely not a bad one. No one is going to like the need to pass each time a proof that `a ≥ b` for every `a - b` invocation. Taking into account that this proof will most likely be an implicit argument, that would be a really annoying thing to use.<p>On the other hand, array indices by default <i>do</i> require such a proof, i.e., this code produces a compile time error:<p><pre><code>  def x := #[1, 2, 3, 4]
  #check x[7]
</code></pre>
Kevin Buzzard even wrote a blog post about a similar question about division by zero: <a href="https://xenaproject.wordpress.com/2020/07/05/division-by-zero-in-type-theory-a-faq/" rel="nofollow">https://xenaproject.wordpress.com/2020/07/05/division-by-zer...</a></p>
]]></description><pubDate>Mon, 13 Apr 2026 08:39:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47749389</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47749389</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47749389</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A perfectable programming language"]]></title><description><![CDATA[
<p>Unfortunately Lean’s distribution went from somewhat about 15 MiB in times of Lean 3 to more than 2,5 GiB when unpacked nowadays for no good reason. This is too much. Even v4.0.0-m1 was a 90 MB archive. Looks like that Lean’s authors do not care about this anymore.<p>Lean 3 was the least bloated theorem prover among Lean, Coq and Agda, and Lean 4 is the most bloated among this Big Three. This is very sad.<p>Personally, I stopped using Lean after the last update broke unification in a strange way again.</p>
]]></description><pubDate>Mon, 13 Apr 2026 02:40:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=47746948</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47746948</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47746948</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Woxi: Wolfram Mathematica Reimplementation in Rust"]]></title><description><![CDATA[
<p>Glad to see Rust project under AGPL-3.0. I wish to see more Rust projects under (A)GPL, because (A)GPL is rare in the Rust community for some reason.</p>
]]></description><pubDate>Sun, 01 Mar 2026 05:58:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=47204114</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47204114</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47204114</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "The Om Programming Language"]]></title><description><![CDATA[
<p>So instead of using programming languages designed specifically to effectively express algorithms and data structures, we are going to use natural language like English that is clearly not expressive enough for this? It’s like rewriting a paper about sheaf cohomology in plain English without any mathematical notation and expecting it to be accessible to everyone.</p>
]]></description><pubDate>Thu, 26 Feb 2026 07:23:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47162961</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=47162961</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47162961</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "The Influentists: AI hype without proof"]]></title><description><![CDATA[
<p>I saw this DSL on HN yesterday, and this syntax is total garbage. It’s some stupid mixture of different PLs. Are you seriously OK with this so that you keep posting it here? I don’t even want to look through source code knowing what garbage it is at the surface level.</p>
]]></description><pubDate>Thu, 15 Jan 2026 08:11:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=46629596</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46629596</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46629596</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Windows 8 Desktop Environment for Linux"]]></title><description><![CDATA[
<p>It’s funny to see that even nowadays just a few people understand Windows 8’s UI, while the majority in these comments just blindly shits at it. Not surprising, though, since there are so many happy users of crap UI’s like KDE around.<p>Sadly, this clone looks very‐very bad, just like millions of WP8‐like launchers compared to the actual WP8.</p>
]]></description><pubDate>Tue, 13 Jan 2026 07:48:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=46598296</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46598296</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46598296</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A Love Letter to FreeBSD"]]></title><description><![CDATA[
<p>They now provide at least somehow working x86_64 images. It’s of course funny for a project started in the 90s to get x86_64 support only in the 2020s, but it’s still progress in relative terms.</p>
]]></description><pubDate>Mon, 01 Dec 2025 13:28:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=46107142</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46107142</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46107142</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A Love Letter to FreeBSD"]]></title><description><![CDATA[
<p>No, it’s just you having some strange prejudices about these words (probably driven by blind faith in some overhyped technologies), so go better overregulate your preferred echo chamber.</p>
]]></description><pubDate>Mon, 01 Dec 2025 13:18:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=46107046</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46107046</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46107046</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A Love Letter to FreeBSD"]]></title><description><![CDATA[
<p>I feel the same, because it seems that the only desktop-ready OS under GPL today is GNU/Linux, and it feels too bloated nowadays (not to mention that Linux is effectively stuck under GPLv2). Something like FreeBSD feels much lighter and better still being desktop‐ready. Looks like that guys from Hyperbola think the same and that’s why they are doing HyperbolaBSD.
Btw there’s some progress in GNU Hurd, but they are still far from being desktop-ready.</p>
]]></description><pubDate>Mon, 01 Dec 2025 02:34:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=46102879</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46102879</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46102879</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "A Love Letter to FreeBSD"]]></title><description><![CDATA[
<p>IANAL, but you can’t actually just relicense code, even if it’s under BSD‐like license. What you can do is to release this code in the binary form without providing the source code.</p>
]]></description><pubDate>Mon, 01 Dec 2025 02:22:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=46102772</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=46102772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46102772</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Project to formalise a proof of Fermat’s Last Theorem in the Lean theorem prover"]]></title><description><![CDATA[
<p>Correctness of the kernel and consistency of the theory implemented in it are different things. Gödel’s theorems prevent you from proving the latter, but not the former.</p>
]]></description><pubDate>Thu, 21 Aug 2025 06:06:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44969540</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=44969540</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44969540</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "Project to formalise a proof of Fermat’s Last Theorem in the Lean theorem prover"]]></title><description><![CDATA[
<p>Euclid’s Elements “rigorous proof” is not the same thing as the modern rigorous proof at all.<p>>But the infinitesimal methods used before epsilon-delta have been redeemed by the work on nonstandard analysis.<p>This doesn’t mean that these infinitesimal methods were used in a rigorous way.</p>
]]></description><pubDate>Thu, 21 Aug 2025 05:35:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=44969349</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=44969349</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44969349</guid></item><item><title><![CDATA[New comment by unexpectedtrap in "The Math Is Haunted"]]></title><description><![CDATA[
<p>“Paraconsistent logic” or “paraconsistent set theory” is what you are searching for.</p>
]]></description><pubDate>Sat, 02 Aug 2025 05:41:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=44765135</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=44765135</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44765135</guid></item><item><title><![CDATA[9aout: Native Plan 9 binaries on Linux]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/forked-from-1kasper/9aout">https://github.com/forked-from-1kasper/9aout</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=36786183">https://news.ycombinator.com/item?id=36786183</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 19 Jul 2023 13:42:48 +0000</pubDate><link>https://github.com/forked-from-1kasper/9aout</link><dc:creator>unexpectedtrap</dc:creator><comments>https://news.ycombinator.com/item?id=36786183</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36786183</guid></item></channel></rss>