<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: MrEldritch</title><link>https://news.ycombinator.com/user?id=MrEldritch</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 09 May 2026 09:25:07 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=MrEldritch" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by MrEldritch in "Show HN: Hallucinopedia"]]></title><description><![CDATA[
<p>Confusingly, both articles do indeed mention each other for me.</p>
]]></description><pubDate>Thu, 07 May 2026 09:02:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48047129</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=48047129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48047129</guid></item><item><title><![CDATA[New comment by MrEldritch in "Show HN: Hallucinopedia"]]></title><description><![CDATA[
<p>Noticed it kept using the term 'resonator' or 'resonance', decided to navigate to a page for 'resonance cascade' as a joke, and discovered this fantastically broken article: <a href="https://halupedia.com/resonance-cascade" rel="nofollow">https://halupedia.com/resonance-cascade</a></p>
]]></description><pubDate>Thu, 07 May 2026 08:33:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48046920</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=48046920</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48046920</guid></item><item><title><![CDATA[New comment by MrEldritch in "Tom7: No one can force me to have a secure website [video]"]]></title><description><![CDATA[
<p>Hear, hear! I honestly think the obsession with cryptography and security has caused us to lose much of what is simply <i>fun</i> about technology. We have grown so used to the assumption that everyone involved is a corporate player and that fools must be kept insulated that we have left no room for play.</p>
]]></description><pubDate>Tue, 14 Apr 2026 01:31:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47760176</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=47760176</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47760176</guid></item><item><title><![CDATA[New comment by MrEldritch in "447 TB/cm² at zero retention energy – atomic-scale memory on fluorographane"]]></title><description><![CDATA[
<p>The concept is interesting, but I'm getting a lot of red flags from this - there's no experimental data or proof-of-concept work at all, which makes this feel more like a blue-sky "Look what we could do if we could arrange atoms however we wanted!" pipe dream in the Drexlerian mode. Something about the writing style's also pinging my LLM radar, which while not disqualifying in-and-of-itself is very discouraging in combination with the other funkiness. The chemistry and manufacturability strike me as questionable in particular, and I'm not convinced the physics of reading and writing are nearly as clean as the author seems to think.<p>(I'm also unclear how the bit is supposed to actually <i>flip</i> under the applied electric charge without the fluorine and carbon having to pass through each other.)</p>
]]></description><pubDate>Sat, 11 Apr 2026 23:17:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47734810</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=47734810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47734810</guid></item><item><title><![CDATA[New comment by MrEldritch in "Write-only code"]]></title><description><![CDATA[
<p>> Write-Only Code is not a prediction about what we should want. It is a description of what happens when software production scales beyond human attention.<p>Have we considered whether it's even a <i>good idea</i> to produce software at scales beyond human attention? I'm beginning to suspect that, in terms of the net amount of economic effort and sheer quantity of software produced, we are already creating simply too much software relative to the amount of economic effort we put into hardware, construction, and human capital. Most human needs and desires can only be met through manipulation of atoms, and it seems as though we've largely refocused on those which can be met through manipulation of numbers and symbols - not because anyone really <i>wants</i> their life to revolve around them to the exclusion of everything else - but because they're the easiest markets to profitably scale for the least amount of capital input.</p>
]]></description><pubDate>Sun, 22 Feb 2026 22:49:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47115636</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=47115636</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47115636</guid></item><item><title><![CDATA[New comment by MrEldritch in "Uiua – A stack-based array programming language"]]></title><description><![CDATA[
<p>I primarily use it as a toy, but it's also come in genuinely handy for me as a scripting language and calculator (but a calculator that also works with strings).
The terseness isn't really a code-golf thing; once you're familiar with the glyphs (which are really a fairly well-chosen set of powerful algorithmic primitives) it makes it more straightforward than any conventional language I've worked with to just Implement An Algorithm, with no boilerplate or fluff. Arrays with array broadcasting, combined with Uiua's stack combinators, are just a really flexible and general tool for expressing how data flows through a program, and the glyphs make it possible to (once you're used to them) translate those flows into code very naturally and smoothly.<p>It's difficult for me to express just how fun Uiua can be to use. It's rather like one of those Zachtronics games - both in that figuring out how to fit your task into the array-programming model can be a bit of a puzzle sometimes, and in that once you've done that it's an extremely quick and non-frustrating process to make it work. The pure essence of what makes programming enjoyable, for better and for worse. There's also just a lot less plumbing and documentation-reading involved; the flexibility and terseness of the glyphs means that a lot of things you might have to call out to a standard library for in other languages you can Just Write because the entire implementation could easily be of length comparable to the name. (There's also a lot less plumbing and documentation-reading involved because there's only, like, four Uiua libraries anyway. Less to plumb together. Like I said, what makes programming enjoyable, for better and for worse.)<p>(Why Uiua and not, like, APL? I actually find APL enormously more difficult to read, due to the syntax - APL glyphs have two context-dependent readings, depending on whether they're being used as an binary infix or a unary prefix, and figuring out how the parse tree breaks down when squinting at a sea of glyphs is painful. It's like a whole language of garden path sentences. Uiua glyphs have fixed arity and always mean exactly one thing; so there's twice as many glyphs, but parsing by sight-reading is way more straightforward.)</p>
]]></description><pubDate>Sat, 04 Jan 2025 14:31:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=42594848</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=42594848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42594848</guid></item><item><title><![CDATA[New comment by MrEldritch in "Star Tek–Exploiting the Final Frontier: Counterspace Operations in 2025 (1996) [pdf]"]]></title><description><![CDATA[
<p>"Directed energy weapon" is essentially the more technical way of saying "death ray". Lasers, microwaves, particle beams, that sort of thing.</p>
]]></description><pubDate>Tue, 22 Sep 2020 02:41:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=24550372</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=24550372</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24550372</guid></item><item><title><![CDATA[New comment by MrEldritch in "Phosphine detected in the atmosphere of Venus – an indicator of possible life?"]]></title><description><![CDATA[
<p>It seems very unlikely - the researchers estimate a lifetime for phosphine of just thousands of years in the more temperate parts of the atmosphere, and just thousands of <i>seconds</i> nearer to the surface.</p>
]]></description><pubDate>Mon, 14 Sep 2020 20:49:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=24474971</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=24474971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24474971</guid></item><item><title><![CDATA[New comment by MrEldritch in "The first battery-free Game Boy wants to power a gaming revolution"]]></title><description><![CDATA[
<p>the energy flux available in ambient radio waves passing through something the size of a handheld is <i>microscopic</i>, pretty much.</p>
]]></description><pubDate>Wed, 02 Sep 2020 15:45:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=24354328</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=24354328</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24354328</guid></item><item><title><![CDATA[New comment by MrEldritch in "Ice-forth: A self-hosted Forth on the 6502 for creating NES cartridges"]]></title><description><![CDATA[
<p>While on the subject of FORTH for the 6502, I can't resist mentioning Eloraam's now-defunct (but huge in its heyday) Minecraft mod Redpower 2! It included fully-functional computer blocks that could interface with redstone machinery ... running a custom FORTH on an emulated 6502 processor :)</p>
]]></description><pubDate>Sun, 26 Jul 2020 18:22:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=23958998</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=23958998</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23958998</guid></item><item><title><![CDATA[New comment by MrEldritch in "Place for Open and Interactive Mathematics"]]></title><description><![CDATA[
<p>I think what they're doing with those sculptures is that they're taking three sine waves of different frequencies A, B, and C, and that the sculpture is the path that the point (cos(A t), cos(B t), cos(C t)) takes over the combined period of all three frequencies. That's why it's cube-shaped; x, y, and z each vary from -1 to 1 over the respective periods of each component. Like a 3D Lissajous figure; see this (<a href="https://gfycat.com/angelicdismalamazonparrot" rel="nofollow">https://gfycat.com/angelicdismalamazonparrot</a>) for a 2D example.<p>But I also agree that I shouldn't <i>have</i> to be guessing like this, and that it'd be better if they had more explanation.</p>
]]></description><pubDate>Sun, 05 Jul 2020 17:23:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=23740281</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=23740281</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23740281</guid></item><item><title><![CDATA[New comment by MrEldritch in "Security Flaws in Adobe Acrobat Reader Allow Gaining Root on macOS Silently"]]></title><description><![CDATA[
<p>Does Hacker News have a "Report" button?</p>
]]></description><pubDate>Thu, 14 May 2020 16:04:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=23181152</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=23181152</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23181152</guid></item><item><title><![CDATA[New comment by MrEldritch in "New Ramsay malware can steal sensitive documents from air-gapped networks"]]></title><description><![CDATA[
<p>Perhaps I'm missing something, but ... this malware's initial infection vector is via email. If your computer is connected to email, it cannot <i>possibly</i> be air-gapped, unless I'm severely misunderstanding what "air-gapped" means.<p>I assume that it's meant that the malware infects an internet-connected computer, jumps to removable storage, and then hopefully that storage is plugged into the target computer, possibly through multiple intermediate infections? But the fact that viruses can spread via thumbdrives is hardly novel either.<p>And the kicker, of how you get the files <i>out</i> of the air-gap, is also not mentioned; "ESET says that during its research, it was not able to identify any Ramsay exfiltration module just yet." I'm certainly aware of a number of sexy proof-of-concept side-channel attacks that modulate things like fan noise or graphics card activity or infrasound to try and exfiltrate data in a way that an external agent could pick up, but there's no evidence that this malware uses any of them; perhaps the hope is that another infected flash drive gets plugged in with an exfiltration module, slurps up the data, and then transmits it out when it's plugged back into a network-connected machine.</p>
]]></description><pubDate>Wed, 13 May 2020 22:46:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=23172731</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=23172731</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23172731</guid></item><item><title><![CDATA[New comment by MrEldritch in "Windows 10 is getting Linux files integration in File Explorer"]]></title><description><![CDATA[
<p>Obviously, like everyone, I'm a little concerned about "Embrace, Extend, Extinguish" and I don't <i>really</i> believe that Microsoft are suddenly "the good guys".<p>But I don't, ultimately, think that this will lead to the demise of Linux. Desktop Linux as a serious competitor for a general-use operating system was <i>already</i> not happening and not really showing any signs of growth beyond a tiny percentage of geeks; if it <i>was</i> going to happen then I think this would be a major barrier to it (why bother abandoning Windows or learning to dual-boot for Linux functionality when you can just use WSL?), but since it wasn't going to happen <i>anyway</i>, another reason it's not happening won't really matter.<p>(and on the other hand, by providing a less-scary way to get familiar with Linux from inside the operating system you're already used to, it might lower the barrier by an equal amount)<p>And Windows is resource-heavy and full of enough overhead (not to mention license fees) that it's never going to replace Linux in the server, high-performance, or embedded space, and this certainly won't effect that.<p>I suppose it may end up leading to fewer devs directly running Linux in the workplace, since the corp can issue them a more corp-comfy Windows machine instead and trust that they'll still be able to get work done, and all the odd troubles of getting Linux to work comfortably on a laptop just sort of vanish if you can just use Windows anyway, which could erase a good chunk of the tiny desktop/laptop marketshare that Linux already has. Or it may not. Who knows!</p>
]]></description><pubDate>Wed, 08 Apr 2020 20:38:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=22816812</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22816812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22816812</guid></item><item><title><![CDATA[New comment by MrEldritch in "Obsolete Technology in Unicode (2018)"]]></title><description><![CDATA[
<p>Given that that story, <i>with that specific wording</i>, has been a running joke circulating around the Internet for years, I suspect your co-worker's kid has never said any such thing.</p>
]]></description><pubDate>Sun, 29 Mar 2020 05:49:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=22716748</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22716748</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22716748</guid></item><item><title><![CDATA[New comment by MrEldritch in "Developer Experience: Fundamentally harder than normal UX"]]></title><description><![CDATA[
<p>These are very interesting! The Legible Mathematics one also made me think of APL, which is very hard to read - but specifically it's hard to read <i>for the same reason that traditional linear programming math</i> is hard to read, the lack of visual grouping[1]. I wonder how it might be possible to redesign something like APL to take advantage of rich text and more complex formatting?<p>[1] The weird symbols might seem like an <i>initial</i> barrier to this, but they're only hard to read if you're unfamiliar with APL; they're actually very easy to learn and remember, as there's not that many of them and they all do very basic operations. However, APL <i>loves</i> operator overloading and likes to give operators different functions based on whether they're used in prefix ("monadic") or infix ("dyadic") forms, and there are also higher-order operators that consume the operators immediately adjacent to them and then operate on the expressions after that; all of this makes the nominally right-to-left parsing require a fair bit of mental effort instead of being able to rely on immediate visual recognition.</p>
]]></description><pubDate>Mon, 24 Feb 2020 17:49:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=22406361</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22406361</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22406361</guid></item><item><title><![CDATA[New comment by MrEldritch in "Neutrino Nonsense"]]></title><description><![CDATA[
<p>With all due respect (which is not much), this is complete nonsense.</p>
]]></description><pubDate>Sun, 16 Feb 2020 15:31:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=22341956</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22341956</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22341956</guid></item><item><title><![CDATA[New comment by MrEldritch in "A Paper Algorithm Notation (2014)"]]></title><description><![CDATA[
<p>See also APL, which was designed as a concise algorithmic notation first and only adopted as an actual language afterwards. (Hence the use of custom symbols)<p>Although unlike this notation, APL is more <i>typewriter</i>-optimized; many symbols are made by double-striking two other more basic symbols, and the typesetting is simple and linear - it clearly doesn't take advantage of the full expressive power of handwriting. (Plus, its array-based programming flow, while extremely powerful, is very different from the way most people write algorithms these days)</p>
]]></description><pubDate>Sun, 16 Feb 2020 15:04:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=22341828</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22341828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22341828</guid></item><item><title><![CDATA[New comment by MrEldritch in "Erdős–Bacon number"]]></title><description><![CDATA[
<p>I don't think this is fair.
I have ADHD. It is not an exaggeration to say that I can't function without drugs - I have trouble doing literally any task that requires switching focus or making long-term plans (including complex, multi-step tasks like "put on pants, go outside, find a place to eat, and eat some food so you don't starve".)<p>Specifically, I can't function without <i>prescription amphetamines, in dosages substantially greater than Erdos was taking.</i></p>
]]></description><pubDate>Wed, 12 Feb 2020 21:58:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=22313252</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22313252</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22313252</guid></item><item><title><![CDATA[New comment by MrEldritch in "“I made an operating system UI within Unity”"]]></title><description><![CDATA[
<p>The point of doing an operating system UI in a game engine is so that you can use that operating system UI <i>within games written in that engine!</i><p>There's several examples - Simulacra, Emily was Away, Hypnospace Outlaw - that use the interface of an (imaginary) computer as their primary framing device.<p>Or it could be useful in an immersive-sim type game where there happen to be computers you can interact with; you could immediately see the applications in some kind of hacking-themed game.</p>
]]></description><pubDate>Tue, 11 Feb 2020 18:14:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=22300911</link><dc:creator>MrEldritch</dc:creator><comments>https://news.ycombinator.com/item?id=22300911</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22300911</guid></item></channel></rss>