<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: MatejKafka</title><link>https://news.ycombinator.com/user?id=MatejKafka</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 15 Sep 2026 13:10:05 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=MatejKafka" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by MatejKafka in "The ChatGPT/Codex app bundles a full copy of LibreOffice"]]></title><description><![CDATA[
<p>It does provide a pretty good COM interface.</p>
]]></description><pubDate>Wed, 09 Sep 2026 14:06:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=49626836</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=49626836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49626836</guid></item><item><title><![CDATA[New comment by MatejKafka in "Document-borne AI worms can self-propagate through Copilot for Word"]]></title><description><![CDATA[
<p>It's not really important whether the text is visible, you can just put the instructions in the middle of a long document, or use a low contrast color, or a small font size, or any other of the myriad of ways to make text hard to read.</p>
]]></description><pubDate>Wed, 29 Jul 2026 18:16:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=49101046</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=49101046</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49101046</guid></item><item><title><![CDATA[New comment by MatejKafka in "Zig's Incremental Compilation Internals"]]></title><description><![CDATA[
<p>> By the way, if you don't want a culture war, you gotta stop warring.<p>I find it hard to understand how could steveklabnik's comment be seen as warring.</p>
]]></description><pubDate>Wed, 29 Jul 2026 15:34:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49098859</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=49098859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49098859</guid></item><item><title><![CDATA[New comment by MatejKafka in "Zig's Incremental Compilation Internals"]]></title><description><![CDATA[
<p>I haven't seen data that would confirm that the Nim ARC/ORC approach is faster than manual memory management (C/Rust/Zig/...) on programs with non-trivial lifetimes (for trivial lifetimes, Nim elides RC). I'd also be somewhat surprised if it was consistently faster than GC – most languages with automatic memory management use GC over RC because RC adds significant overhead, especially in multithreaded programs.</p>
]]></description><pubDate>Wed, 29 Jul 2026 15:27:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=49098783</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=49098783</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49098783</guid></item><item><title><![CDATA[New comment by MatejKafka in "I'm 38 and I Can't Support Myself Anymore"]]></title><description><![CDATA[
<p>From HN guidelines:<p>> Be kind. Don't be snarky. Converse curiously; don't cross-examine. Edit out swipes.</p>
]]></description><pubDate>Wed, 29 Jul 2026 06:14:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=49093961</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=49093961</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49093961</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>I agree that culture makes a difference, but the largest aspect of it is that the average Linux user is fairly technically proficient and would be fairly unlikely to install malware even on Windows.<p>As for software installation, that is true for software packaged by your distro (for Ubuntu/Debian/Fedora and others, that only includes open-source software by default), and similarly, a lot of Windows software is now available from MS Store. But even on Linux, you'll need to download software manually (e.g., Chrome is not available in default Ubuntu repos, same for Discord, Slack, Teams, VS Code, Dropbox, Spotify and other common software). Even worse, less known dev tools are quite often installed with `curl ... | sh` or equivalent, which is a strictly worse alternative to installers on Windows from a security perspective.<p>Then, there's the question of phishing, infected torrents, fake movie pirating sites,... Currently, most malware from these sources will target Windows (various .mp4.exe files, Excel macros,...). If Windows users migrated to Linux, malware would adapt and start targeting Linux.<p>Desktop Linux is currently protected by being a low value target – it has low market share, and most of its users are power users, which makes them harder to trick. The opposite is true for server and embedded Linux, and it's a frequent malware target as a result.</p>
]]></description><pubDate>Sun, 19 Jul 2026 14:22:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48968458</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48968458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48968458</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>To answer in a more constructive way:<p>No mainstream desktop OS tries very hard to sandbox drivers. Some drivers on both Windows and Linux (not very familiar with Mac) can be implemented as userspace drivers, as long as the performance hit is acceptable, but for many devices (e.g., graphics drivers), you need a kernel driver to get reasonable performance.<p>Therefore, if your OS supports loading 3rd party binary drivers (Windows do, Linux technically does as well, but tries to make them hard to use in practice), it cannot really refuse to load kernel drivers and only allow userspace ones without breaking a lot of machines.<p>Even if you have a userspace driver, the device may still get DMA access to RAM. IOMMU is a thing, but due to backwards compatibility, the driver chooses whether to enable IOMMU protection for the specific device on Windows.<p>If you're willing to write your own microkernel and bootstrap its driver ecosystem from scratch, your claims would be reasonable. With current desktop OS architecture, not really.<p>As for the accompanying software, there is a good explanation in another comment of all the valid use cases it has (printer dialogs, audio interface configuration,...). LG abusing that to show ads is primarily LG's problem.</p>
]]></description><pubDate>Sun, 19 Jul 2026 03:48:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48964816</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48964816</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48964816</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>I expect that process to be mostly automated, I wouldn't expect the MS folks at the testing lab to do much (if any) manual testing, especially for a new version of a previously approved driver.<p>I'm not surprised that the driver got approved, especially if the previous versions already had some user UI and this update "just" added the ads. What I would hope now is for MS to either pull the updated driver or ask LG to roll the change back themselves, possibly under the thread of pulling their drivers altogether (iirc they done that with other companies in the past).</p>
]]></description><pubDate>Sun, 19 Jul 2026 03:17:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48964654</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48964654</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48964654</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Yes, and it's still fairly easy.</p>
]]></description><pubDate>Sat, 18 Jul 2026 20:00:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=48961734</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48961734</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48961734</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Agents work well on Windows for sysadmin stuff - PowerShell gives them an easy way to interact with Registry, event log, WMI and other facilities in a structured way.</p>
]]></description><pubDate>Sat, 18 Jul 2026 19:57:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48961707</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48961707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48961707</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Use Pro, Home is needlessly limiting for a power user.</p>
]]></description><pubDate>Sat, 18 Jul 2026 19:53:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48961663</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48961663</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48961663</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Read sibling comments to get answers to all your (non)questions.</p>
]]></description><pubDate>Sat, 18 Jul 2026 19:44:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48961574</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48961574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48961574</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Except there's plenty of proprietary software for linux, you just won't find it in default repos and have to install it manually.</p>
]]></description><pubDate>Sat, 18 Jul 2026 19:38:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48961508</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48961508</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48961508</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Agree with all of those points and there are some partial solutions (IOMMU, userspace drivers, virtualization,...), but we're still quite far from being able to safely connect untrusted hardware and load its driver without effectively giving it privileged access.</p>
]]></description><pubDate>Sat, 18 Jul 2026 15:56:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48959243</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48959243</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48959243</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>Yes, but unless all 3rd party drivers can run in userspace (which is not really feasible), Microsoft needs to give vendors the option to install a kernel driver, at which point a vendor can always decide to ship a kernel driver and bypass any restrictions.<p>Imo, the only thing Microsoft can meaningfully do here from their side is threaten LG with pulling all their drivers if they keep doing this.</p>
]]></description><pubDate>Sat, 18 Jul 2026 15:51:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48959202</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48959202</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48959202</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>You know why desktop Linux doesn't have much malware? Because ~no one uses it. That's it. Once you get users, you get malware.<p>The rest of your comment is just as ignorant.</p>
]]></description><pubDate>Sat, 18 Jul 2026 14:42:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48958587</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48958587</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48958587</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>> Autorun of malware when you plugged in a USB drive was also a Windows issue, I'd classify this as the same security problem.<p>Not really. AutoRun ran whatever was on the USB drive, with no oversight. This installs a driver from a company that's supposed to be reputable enough to get their driver signed by MS and pass validation. LG breached that trust here.</p>
]]></description><pubDate>Sat, 18 Jul 2026 14:38:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48958548</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48958548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48958548</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>How it it a Windows issue that driver developers pack garbage with their drivers? If Linux supported loading 3rd party drivers (it mostly doesn't, and if Windows did that, the whole internet would be up in arms about Microsoft locking down their OS), it would have exactly the same issues.<p>This is basically the same as downloading a program, running it and when it downloads garbage on your computer, complaining that Windows are dumb for allowing a program to download garbage.</p>
]]></description><pubDate>Sat, 18 Jul 2026 14:29:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48958485</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48958485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48958485</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>You can "spoof" any system where you can load older drivers into giving you admin/root, you just need to find a vulnerable driver. Nothing Windows-specific in that.</p>
]]></description><pubDate>Sat, 18 Jul 2026 14:25:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=48958451</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48958451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48958451</guid></item><item><title><![CDATA[New comment by MatejKafka in "LG monitors silently install software through Windows Update without consent"]]></title><description><![CDATA[
<p>How exactly do you propose to sandbox drivers running in kernel space? Do you even know how drivers work? (I'm guessing no, based on this comment)</p>
]]></description><pubDate>Sat, 18 Jul 2026 14:23:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48958440</link><dc:creator>MatejKafka</dc:creator><comments>https://news.ycombinator.com/item?id=48958440</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48958440</guid></item></channel></rss>