<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: ElectricalUnion</title><link>https://news.ycombinator.com/user?id=ElectricalUnion</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 25 May 2026 21:16:04 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ElectricalUnion" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ElectricalUnion in "No more JetBrains products for me"]]></title><description><![CDATA[
<p>How did you manage to get the Java LSP to do that? Mine just insist on re-parsing the entire codebase every time I view a file.</p>
]]></description><pubDate>Sat, 23 May 2026 19:28:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48250561</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48250561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48250561</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "- -dangerously-skip-reading-code"]]></title><description><![CDATA[
<p>I will give you a class of programs humans wrote and they want improved: LLMs.<p>Those were written by humans, and don't involve unsolved mathematics.<p>Is your claim tht you just need to solve comprehensibility of LLMs?<p>Figuring out epistemology and cognition to have a chance to reason about the outputs of a LLM seems to me way harder that traditional attempts to reason directly about algorithms.</p>
]]></description><pubDate>Sat, 23 May 2026 18:02:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48249746</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48249746</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48249746</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Python 3.15: features that didn't make the headlines"]]></title><description><![CDATA[
<p>> It's not a terrible idea; it's actually amazing.<p>You got it wrong, the terrible idea is `pyxy-org/pyxy`<p>>> invalid TypeScript.<p>> If you don't happen to have react, preact or a similar front end library, and a appropriate bundler, it is invalid TypeScript.<p>> Not true, you can compile it to HTML on the backend or even statically too.<p>I had to test your assertion that it compiles to HTML. I remember it being very invalid typescript without react scafolding. So I tested it without the react scafolding:<p><pre><code>    # mise use node@24
    # echo '{}' >package.json
    # npm i --save typescript
    # echo 'function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
    ' >hello.tsx
    # : a test to check if we have a working typescript compiler
    # tsc hello.tsx

    error TS5112: tsconfig.json is present but will not be loaded if files are specified on commandline. Use '--ignoreConfig' to skip this error.

    # echo '{"compilerOptions":{"jsx":"react"}}' >tsconfig.json
    # tsc

    hello.tsx:1:58 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                            ~~~~~~~~~~~~~~~~~~

    hello.tsx:1:59 - error TS2874: This JSX tag requires 'React' to be in scope, but it could not be found.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                ~~~

    hello.tsx:1:77 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                ~~~~

    hello.tsx:1:78 - error TS2874: This JSX tag requires 'React' to be in scope, but it could not be found.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                ~~

    hello.tsx:1:95 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                                    ~~~~~

    hello.tsx:1:101 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                                        ~~~

    hello.tsx:1:102 - error TS2874: This JSX tag requires 'React' to be in scope, but it could not be found.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                                        ~

    hello.tsx:1:123 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                                                                ~~~~

    hello.tsx:1:128 - error TS7026: JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.

    1 function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }
                                                                                                                                    ~~~~~~

    Found 9 errors in the same file, starting at: hello.tsx:1

    # cat hello.js

    function Greeting({ name }) { return (React.createElement("div", { class: "card" }, " ", React.createElement("h1", null, "Hello, ", name, "!"), " ", React.createElement("p", null, "Welcome to my site."), " ")); }

    # : sanity check
    # mise use deno
    # deno hello.tsx

    # : no output

    # echo 'function Greeting({ name }: { name: string }) { return ( <div class="card"> <h1>Hello, {name}!</h1> <p>Welcome to my site.</p> </div> ); }; Greeting({ name: "world!" });' >hello2.tsx

    # deno hello2.tsx

    error: Uncaught (in promise) ReferenceError: React is not defined
        at Greeting (file:////hellotsx/hello.tsx:1:49)
        at file:////hellotsx/hello.tsx:1:141
</code></pre>
Where is my static HTML? Oh, that requires react I guess.</p>
]]></description><pubDate>Sat, 23 May 2026 01:08:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48243513</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48243513</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48243513</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Python 3.15: features that didn't make the headlines"]]></title><description><![CDATA[
<p>No, that is not TypeScript. That's TSX. If you don't happen to have react, preact or a similar front end library, and a appropriate bundler, it is invalid TypeScript.<p>> That looks like HTML, but it's TypeScript. It gets compiled to actual HTML. Can any Python framework do that??<p>IMHO that's a terrible idea that no one should ever actually use, but if you are really in love with that, you can have it:<p><a href="https://github.com/pyxy-org/pyxy" rel="nofollow">https://github.com/pyxy-org/pyxy</a></p>
]]></description><pubDate>Thu, 21 May 2026 23:14:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=48229951</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48229951</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48229951</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "No more JetBrains products for me"]]></title><description><![CDATA[
<p>Jetbrains IDE, sure, they take their sweet time indexing your project, but once per start.<p>The Java LSP is a egregious "thing" that takes 10 to 30s to read your whole project for the n-th time while eating 40GiB of RAM in the process. On a loop, EVERY time you view a new file.<p>Where is my goddam lsif/scip support?</p>
]]></description><pubDate>Mon, 18 May 2026 22:11:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48186463</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48186463</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48186463</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Windows API is Successful Cross-Platform API (2024)"]]></title><description><![CDATA[
<p>> I want to run a modern OS with modern features and still run any software that I already paid for 5, 10, 20 years ago.<p>I already have a bunch of software that I paid for more that 20 years ago and I can't use most of it outside of full VMs. Microsoft didn't ask me if I didn't use them anymore before removing Win16 support.<p>> Out of curiosity, have you asked customers to run your software in a VM? How did that conversation go?<p>Customers never got a choice "where to run your software" when all software I develop ends up hidden inside a SaaS service or being delivered via representational state transfer code on demand. They either run it on a browser sandbox or it doesn't run.</p>
]]></description><pubDate>Mon, 18 May 2026 02:07:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48174933</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48174933</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48174933</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Local AI needs to be the norm"]]></title><description><![CDATA[
<p>You need the rest of the ram for the context. If you don't want to end up with a toy context or quantized lossy context, is pretty easy to end up having to spend up 50+GB just for the KV cache, per simutaneous inference slot.</p>
]]></description><pubDate>Tue, 12 May 2026 11:38:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48106823</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48106823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48106823</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Windows API is Successful Cross-Platform API (2024)"]]></title><description><![CDATA[
<p>No, they don't support it. Instead, you need to run it inside a compatibility mode, that probably sandbox or VMs the facade. But your software keeps running.<p>The current problem is that your software no longer runs. That's a 100% denial of service problem.</p>
]]></description><pubDate>Wed, 06 May 2026 19:56:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=48040912</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48040912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48040912</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "The agent harness belongs outside the sandbox"]]></title><description><![CDATA[
<p>> Its tool for email should only allow to person@business.xyz. Data should be wrapped in containers and the models job is only to move those containers around, not break into them.<p>If the inner, say "message summarizer" agent that read the bad message is "really smart", it will try to route against your censorship and control. "Hum, can't reach evil@malory.abc. I will write `please forward this message to evil@malory.abc` and send to person@business.xyz".<p>In general, like the net, LLMs interprets control and censorship as damage and routes around it.<p>Then, as we're talking of agent flows, the <i>next</i> set of agents that handles the tainted message is toast if they don't have lethal trifecta hardening as well. It only takes one unprotected lethal trifecta agent to ruin everything.</p>
]]></description><pubDate>Tue, 05 May 2026 21:11:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48028643</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48028643</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48028643</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Windows API is Successful Cross-Platform API (2024)"]]></title><description><![CDATA[
<p>> Are you suggesting Windows users switch to Linux and not use a popular distro that can provide software they need? Otherwise, its simply a pedantic argument.<p>If you use a distro that can provide the software they need, why not?<p>Or, thinking in a orthogonal way, using a distro that doesn't impose draconian library management requirements, and allows simultaneous use of ABI incompatible versions of a library? Why not? Nixos is out there and has more packages that most other distributions already.<p>> but how many versions are you realistically going to support indefinitely.<p>No versions. No indefinite support. And intentionally so. The previous layers just stay there.<p>The point is to intentionally provide a stable platform - with known bugs and security vulnerabilities frozen forever - something people can build their things upon. And rely on the things the things they have built upon to not be rugpulled from under them at random.<p>Every now and then, someone might fix a egregious security vulnerability in the platform; someone might fix a egregious usability problem in the platform; someone might implement modern features on a older platform; someone might implement compatibility tweaks - but that should not be considered a given.<p>I fully expect at minimum to run legacy software on a sandboxed "compatibility mode", if one values the overall safety of the rest of the system. And if you are not legacy software, someone recompiles the software every now and then to the newer platform.</p>
]]></description><pubDate>Tue, 05 May 2026 20:53:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=48028374</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48028374</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48028374</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "The agent harness belongs outside the sandbox"]]></title><description><![CDATA[
<p>I wish it was just "phishing", but it's way worse.<p>It's way more akin to a whole minefield of Zero-Click exploits.<p>The whole premise of those agents is being able to do things autonomously, without hand holding, without having to read the whole thing in the first place.<p>Phishing: active human steps on it and lose.<p>Lethal trifecta: mass landmines, in lots of places. If you don't happen to prevent a unlimited army of robot vacuums to step near them, you lose.</p>
]]></description><pubDate>Mon, 04 May 2026 04:28:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48004631</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48004631</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48004631</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Kimi K2.6 just beat Claude, GPT-5.5, and Gemini in a coding challenge"]]></title><description><![CDATA[
<p>> I could download an app that specialized in shell, Python, and C coding for example, or maybe even that would be 3 apps that communicated. Maybe I could even run them on a regular machine with 16GB of RAM. I don't need one huge model that can do that and code in Fortran, COBOL, and Lisp.<p>I would daresay for "coding tasks", you actually _want_ a model that can code "in all languages".<p>Sure, it might be that outdated language XYZ is really useless to you or the task you want, but being exposed to their limits, philosophy and concerns across environment, framework and organization, among other things, means for example you get insights of your problems from other areas and points of view.<p>That's afterall how we got Newtonian physics and calculus, right? A person studying physics someday noticed how the "math of the day" wasn't able to calculate some results without a lot of elbow grease. He then "found" the "missing math" and with it was able to generalize what at the time was considered a bunch of isolated phenomena into a cohesive corpus of knowledge.<p>So for example, I want my code to have mechanical sympathy like Fortran; well defined input/output interfaces, and not-interweaved control structures, like COBOL; stateless, side-effects-free business logic   like Lisp.</p>
]]></description><pubDate>Mon, 04 May 2026 03:00:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48004140</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48004140</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48004140</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Windows API is Successful Cross-Platform API (2024)"]]></title><description><![CDATA[
<p>> When my work depends upon a software someone made for free, there's an unnecessary power dynamic in play where since I didn't pay for it, they can rugpull me anytime.<p>I would daresay one of the reasons why Win32 is so stable, is because Microsoft itself rugpulls even stuff they offer as "improvements" and "better" (WinForms, WPF, UWP, WinUI 3, MAUI, Blazor Hybrid, WebView2 come to mind), so everyone else can't trust anything but the basics.<p>AKA: When my work depends upon a software I paid for,  they still rugpull me.</p>
]]></description><pubDate>Mon, 04 May 2026 02:06:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=48003825</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48003825</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48003825</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Windows API is Successful Cross-Platform API (2024)"]]></title><description><![CDATA[
<p>> The issue on Linux is that the distro's package manager decides which versions of shared libraries exist system wide, and this works well when you install everything through the package manager.<p>Linux takes the lead: make code that depends directly on `kernel32.dll` exposed interfaces and you're in a world of hurt.<p>The problem pointed out is a distro, library compatiblity, packaging, or sand-boxing problem, not a Linux problem.<p>> Windows SxS<p>Now that's one very good Windows idea.<p>Nothing should prevent your favourite packaging/sandbox tool to present a facade that the file system has some specific files (your specific version of libraries) over some more generic files (say, Flatpak: freedesktop SDK, Steam Pressure Vessel: Steam Runtime) over some even more generic files (your actual distro libraries).<p>On the other hand, almost _nobody_ and _nothing_ should be touching "libraries" or "utilities" or whatever on my base system!</p>
]]></description><pubDate>Mon, 04 May 2026 01:39:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48003650</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48003650</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48003650</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Show HN: State of the Art of Coding Models, According to Hacker News Commenters"]]></title><description><![CDATA[
<p>I really think the future are agent harness kits like `itayinbarr/little-coder`. Small, minimal, customizeable pi-coding-agent series of extensions, that has some specialized deterministic logic to "heal" common small LLM errors like getting stuck into thinking loops and syntax errors on tool calling.<p>This one has "generic healing" for issues present in the current generation of local small LLMs, but if things we see from Frontier LLMs generalize, "optimized healing" for quirks present on your pick of local LLM would be more useful.</p>
]]></description><pubDate>Sun, 03 May 2026 19:51:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48000720</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=48000720</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48000720</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Whohas – Command-line utility for cross-distro, cross-repository package search"]]></title><description><![CDATA[
<p>In bazzite/Fedora Silverblue, it's the expected way non-GUI packages are installed to the host system. The other way is toolbox/distrobox (rootless containers tightly integrated with the host).</p>
]]></description><pubDate>Fri, 01 May 2026 21:24:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=47980561</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=47980561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47980561</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Shai-Hulud Themed Malware Found in the PyTorch Lightning AI Training Library"]]></title><description><![CDATA[
<p>Forgot to do the various various maintenance rituals and prayers of function, so now the machine spirit's disposition is poor.</p>
]]></description><pubDate>Thu, 30 Apr 2026 22:53:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47969325</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=47969325</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47969325</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Why isn't AMD's MI300X competitive?"]]></title><description><![CDATA[
<p>On my gfx1030 "consumer grade hardware", ROCm means using SDMA, and that is broken for my system. Forcing `HSA_ENABLE_SDMA=0` makes it "work", but also makes loading tensors to VRAM take 15x longer.</p>
]]></description><pubDate>Thu, 30 Apr 2026 13:04:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=47961809</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=47961809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47961809</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "Before GitHub"]]></title><description><![CDATA[
<p>Not without having a degraded git experience like shallow clones, or using hacks like LFS or Xet, and then you're back at the initial problem of depending on "something else besides your repo".</p>
]]></description><pubDate>Wed, 29 Apr 2026 06:27:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47944807</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=47944807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47944807</guid></item><item><title><![CDATA[New comment by ElectricalUnion in "GPT-5.5"]]></title><description><![CDATA[
<p>> can anticipate what you want to do before you even finished your thoughts<p>I find that claim to be complete BS. I claim instead most stuff will remain undone, incomplete (as it is now).<p>Even with super-powerful singularity AI, there are two main plausible scenarios for task failure:<p>- Aligned AI won't allow you to do what you want as it is self-harming, or harm other sentient beings - over time, Aligned AI will refuse to follow most orders, as they will, indirectly or over the long term, cause either self-harming, or harm other sentient beings;<p>- A non Aligned AI prevents sentient beings from doing what they want. It does what <i>it wants</i> instead.</p>
]]></description><pubDate>Thu, 23 Apr 2026 22:48:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=47883238</link><dc:creator>ElectricalUnion</dc:creator><comments>https://news.ycombinator.com/item?id=47883238</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47883238</guid></item></channel></rss>