<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: kayson</title><link>https://news.ycombinator.com/user?id=kayson</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 28 Aug 2026 14:54:54 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=kayson" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by kayson in "Repair Cafe – Fix Your Broken Items"]]></title><description><![CDATA[
<p>I love this idea. A lot of repair knowledge is buried in non-English forums or unsearchable Discord servers (grr Discord). We need to localize it and rebuild community expertise.</p>
]]></description><pubDate>Tue, 18 Aug 2026 02:38:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=49340545</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49340545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49340545</guid></item><item><title><![CDATA[New comment by kayson in "Ntfy – open-source Push to Mobile"]]></title><description><![CDATA[
<p>Who cares? Battery consumption of Gotify is negligible (it uses websockets). Same with CPU/RAM. What's the benefit of giving Google your notifications?</p>
]]></description><pubDate>Fri, 14 Aug 2026 18:32:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=49302800</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49302800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49302800</guid></item><item><title><![CDATA[New comment by kayson in "Ntfy – open-source Push to Mobile"]]></title><description><![CDATA[
<p>I've been using Gotify [1] for a very long time and have been quite happy with it. Basically no impact on battery life. For devs - there are mature libraries like shoutrr [2] and apprise [3] that let you support multiple notification systems with no extra work.<p>1. <a href="https://gotify.net/" rel="nofollow">https://gotify.net/</a><p>2. <a href="https://shoutrrr.nickfedor.com/v0.17.0/" rel="nofollow">https://shoutrrr.nickfedor.com/v0.17.0/</a><p>3. <a href="https://github.com/caronc/apprise" rel="nofollow">https://github.com/caronc/apprise</a></p>
]]></description><pubDate>Fri, 14 Aug 2026 15:25:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=49300041</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49300041</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49300041</guid></item><item><title><![CDATA[New comment by kayson in "Qwen3.8 Max now ranked as the best overall model by agentic index"]]></title><description><![CDATA[
<p>- load bearing -</p>
]]></description><pubDate>Fri, 07 Aug 2026 01:53:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=49205055</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49205055</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49205055</guid></item><item><title><![CDATA[New comment by kayson in "Can you reverse engineer an ASIC?"]]></title><description><![CDATA[
<p>The tools can definitely recognize static logic gates purely from the topology (nothing special in the GDS needed). I don't know that I've tested it for anything more complicated, but as you've pointed out, if the hierarchy is in the GDS it's trivial to recover</p>
]]></description><pubDate>Fri, 07 Aug 2026 01:49:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49205014</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49205014</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49205014</guid></item><item><title><![CDATA[New comment by kayson in "Can you reverse engineer an ASIC?"]]></title><description><![CDATA[
<p>Getting a logic-gate-level netlist from a GDS is trivial with industry standard chip design tools. Circuit designers do this every day. The hardest part will be reverse engineering the functionality.<p>I wish I had more time and I'd throw Calibre at it.</p>
]]></description><pubDate>Thu, 06 Aug 2026 23:32:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49204079</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49204079</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49204079</guid></item><item><title><![CDATA[New comment by kayson in "Can you reverse engineer an ASIC?"]]></title><description><![CDATA[
<p>Yes. There is exactly that, and we call it an "extraction" tool. It takes a GDS (text representation of shapes in the physical layout), and gives you back a "netlist" (text representation of components and connections in a circuit schematic).<p>Circuit designers use these tools basically daily for two reasons - the first is Layout Versus Schematic. We want to make sure that the physical layout matches the schematic, so the tool turns the layout GDS into a netlist and compares that to the netlist created from the schematic (basically a diff, but more complicated). The second is so we can run simulations that take into account the "parasitic" resistances and capacitances of the wires and metal shapes in the physical layout. It's basically the same procedure as LVS with an extra step that analyzes the metal shapes to determine said R's and C's.</p>
]]></description><pubDate>Thu, 06 Aug 2026 23:31:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=49204067</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49204067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49204067</guid></item><item><title><![CDATA[New comment by kayson in "Securing Services with Rootless Containers"]]></title><description><![CDATA[
<p>I'd still rather use docker. I don't mind that the daemon runs as root because there are some things that you need root for anyways! Like binding to privileged ports or setting up networks (use `internal: true` and the daemon will automatically set up iptables rules that limit traffic).<p>I deploy docker compose files with ansible so everything comes with built in security defaults like rootless, dropped caps, no new privileges, etc. I wish more containers supported running read only (its usually pretty easy to add, just overlooked) and distroless (common for go apps, less so otherwise).<p>There was a pretty good comment on reddit a while back with a list of hardenings for compose files [1]<p>1. <a href="https://www.reddit.com/r/selfhosted/comments/1pr74r4/comment/nv07sp4/?context=3" rel="nofollow">https://www.reddit.com/r/selfhosted/comments/1pr74r4/comment...</a></p>
]]></description><pubDate>Mon, 27 Jul 2026 20:55:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=49075405</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=49075405</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49075405</guid></item><item><title><![CDATA[New comment by kayson in "FUTO Swipe – A new swipe typing model"]]></title><description><![CDATA[
<p>I've been using it for a while. The insistence of keyboards on having a large bar of autocorrect suggestions taking valuable vertical space annoys me to no end.<p>I really liked using Fleksy which let you swipe up and down on the keyboard to change autocorrect results, including adding words to your dictionary. I'm still not sure if FUTO even has that option.</p>
]]></description><pubDate>Tue, 23 Jun 2026 23:17:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48652945</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48652945</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48652945</guid></item><item><title><![CDATA[New comment by kayson in "United Wizards of the Coast recognized by NLRB"]]></title><description><![CDATA[
<p>I feel that. I really do. But I also LOVED the Avatar crossover. To be fair, I haven't played any other ones, but this one played so well and seemed to be very well thought out. They really did the IP justice.<p>It's also probably worth pointing out that Lego was nearing bankruptcy and was saved by a ton of licensing (and Ninjago, to be fair). Fortunately, they've used that income stream to still consistently put out a lot of high quality first party sets. Hopefully WotC doesn't lose sight...</p>
]]></description><pubDate>Tue, 23 Jun 2026 22:57:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=48652702</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48652702</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48652702</guid></item><item><title><![CDATA[New comment by kayson in "Love systemd timers"]]></title><description><![CDATA[
<p>I love systemd timers! I've slowly moved all of my ansible-deployed cron jobs to timers (now just an ansible copy!). The integration with journalctl, especially in a newer OS like Debian 13 where syslog is gone, is really nice. It's also really nice to be able to start the service manually for debug. Having a cron job that didn't work was an annoying exercise in copy/pasting or writing an extra shell script. Don't even get me started on the black hole of cron job stdout. I can monitor systemd services like I already do and get a notification on failure.<p>I've noticed more and more open source projects recommending timers as a deployment method and I think that's great!</p>
]]></description><pubDate>Tue, 02 Jun 2026 14:31:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48370787</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48370787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48370787</guid></item><item><title><![CDATA[New comment by kayson in "Print with dozens of colors: Our new open-source ColorMix for PrusaSlicer"]]></title><description><![CDATA[
<p>I wonder if you would get good enough results by just extruding two separate filaments simultaneously. Sure, they won't fully mix, but with thin enough layers, you'd benefit from the same visual processing that makes alternating layers look like a solid color...</p>
]]></description><pubDate>Sat, 30 May 2026 18:38:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48339367</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48339367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48339367</guid></item><item><title><![CDATA[New comment by kayson in "Citing 'severe' math deficits, UC faculty demand a return to SAT tests for STEM"]]></title><description><![CDATA[
<p>This doesn't exactly answer your question, but MIT added test scores back recently and wrote a blog post explaining why: <a href="https://mitadmissions.org/blogs/entry/we-are-reinstating-our-sat-act-requirement-for-future-admissions-cycles/" rel="nofollow">https://mitadmissions.org/blogs/entry/we-are-reinstating-our...</a><p>I think the "paradox" is that you'd expect disadvantaged students to perform worse on standardized testing.</p>
]]></description><pubDate>Thu, 28 May 2026 17:03:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=48311939</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48311939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48311939</guid></item><item><title><![CDATA[New comment by kayson in "Motorola phones have started hijacking the Amazon app to insert affiliate codes"]]></title><description><![CDATA[
<p>> In further digging, we noticed that the URL the phone opens up is “kira-abboud.com,” a website that references fashion influencer “@kirasfashionfinds.” Notably, this exact URL isn’t listed anywhere on Abboud’s social media, and the affiliate codes don’t match up either. The redirect coming from Motorola phones is using Amazona affiliate code “sramz-kff-008-20” which is completely different from any of the codes we saw from links shared by Abboud’s accounts and linked websites.<p>Something funny is up; this doesn't seem deliberate.</p>
]]></description><pubDate>Tue, 26 May 2026 05:22:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48275329</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48275329</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48275329</guid></item><item><title><![CDATA[New comment by kayson in "BambuStudio has been violating PrusaSlicer AGPL license since their fork"]]></title><description><![CDATA[
<p>> The standard defense for something like this is "the plugin is a separate work, so it's not subject to copyleft." That argument falls apart on contact with the actual software. BS cannot do its primary job without the plugin. The plugin cannot do anything without BS.<p>But that's just not true? You can connect a printer in LAN/dev mode and print directly from slicer to printer. There are apparently some issues with more complex network setups but that seems to be the exception rather than the rule.<p>I think the concerns he has generally are valid, but I have yet to see something from a legal perspective (e.g. precedent) that convinces me this constitutes a license violation. Would love to see one.</p>
]]></description><pubDate>Sat, 23 May 2026 16:37:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=48249061</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48249061</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48249061</guid></item><item><title><![CDATA[New comment by kayson in "YAML? That's Norway Problem"]]></title><description><![CDATA[
<p>I wish there were a "strict" yaml. Another subset a la json, where you don't have nonsense like no === false, but "no" does not, but you also get the block style which to me is easier to read and write. I don't mind requiring quotes for strings. Modern IDEs make it easy enough  and it removes ambiguity.</p>
]]></description><pubDate>Sat, 23 May 2026 15:43:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48248626</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48248626</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48248626</guid></item><item><title><![CDATA[New comment by kayson in "Deno 2.8"]]></title><description><![CDATA[
<p>It's surprising to me that bun is so much faster serving web requests. The article mentions Zig as a factor, but is micromanaging memory really gaining over 2x vs node?<p>Similarly, it seems, though they didnt exactly say, that they're running bun with a warm package cache... What about the others? Do they have caches?</p>
]]></description><pubDate>Fri, 22 May 2026 15:01:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=48236900</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48236900</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48236900</guid></item><item><title><![CDATA[New comment by kayson in "A History of IDEs at Google"]]></title><description><![CDATA[
<p>> You aren't even allowed to keep the source code on your local disk<p>How is this enforced?</p>
]]></description><pubDate>Wed, 13 May 2026 20:09:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48126812</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48126812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48126812</guid></item><item><title><![CDATA[New comment by kayson in "Restore full BambuNetwork support for Bambu Lab printers"]]></title><description><![CDATA[
<p>I don't think so. They can already track popularity very effectively because they control makerworld, and they could have Bambu studio, the app, and the printer phone home too. I don't think they care enough about the tiny tiny minority of users running orca with a LAN only printer.<p>More likely, it's technical incompetence. It's just easier (for their cloud) to send everything through their cloud</p>
]]></description><pubDate>Wed, 13 May 2026 02:37:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48117180</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48117180</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48117180</guid></item><item><title><![CDATA[New comment by kayson in "Restore full BambuNetwork support for Bambu Lab printers"]]></title><description><![CDATA[
<p>I don't think they baited and switched? I bought my P1S before the whole LAN mode debacle and even then it was all or nothing on the cloud. I just went with the cloud because they were using some IGMP stuff for the local connection, but I had the printer on a separate VLAN and pfsense IGMP proxying was broken.<p>A different way of looking at it is that Bambu is saying if you want to use their cloud you have to send everything through their cloud. Stupid? Sure. It's very much a technically solvable problem. But I don't think there was any rug pull (this time; in Jan 2025 they tried...)<p>I think this is all more out of incompetence than malice. Something bad happens, exposing wildly inadequate programming expertise, they panic and over correct, and the community pushes back. They're great at making 3D printers, terrible at cloud infra.</p>
]]></description><pubDate>Wed, 13 May 2026 02:34:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48117157</link><dc:creator>kayson</dc:creator><comments>https://news.ycombinator.com/item?id=48117157</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48117157</guid></item></channel></rss>