<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: suncore</title><link>https://news.ycombinator.com/user?id=suncore</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 13 Sep 2026 06:05:13 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=suncore" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by suncore in "Will There Be a 7G?"]]></title><description><![CDATA[
<p>Working on everything from 1G to 6G, I can tell you for sure there will be a 7G whether we need it or not...</p>
]]></description><pubDate>Sat, 12 Sep 2026 21:37:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=49677469</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=49677469</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49677469</guid></item><item><title><![CDATA[New comment by suncore in "Saving 100 terabytes of memory by optimizing 1.1.1.1's DNS cache"]]></title><description><![CDATA[
<p>Not the right order if the optimization is a prerequisite for a positive business case. That happens more often than people think...</p>
]]></description><pubDate>Fri, 28 Aug 2026 09:45:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=49476438</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=49476438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49476438</guid></item><item><title><![CDATA[New comment by suncore in "2027 memory capacity is reportedly sold out"]]></title><description><![CDATA[
<p>Not sure there is much actual profit in LLMs. It will be interesting to see promise meet reality, indeed.</p>
]]></description><pubDate>Sat, 08 Aug 2026 09:06:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49220066</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=49220066</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49220066</guid></item><item><title><![CDATA[New comment by suncore in "Setting up an AI-native organization"]]></title><description><![CDATA[
<p>How about an I-native org?</p>
]]></description><pubDate>Sat, 16 May 2026 10:30:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48158852</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=48158852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48158852</guid></item><item><title><![CDATA[New comment by suncore in "Where the goblins came from"]]></title><description><![CDATA[
<p>Marketing grab</p>
]]></description><pubDate>Thu, 30 Apr 2026 08:28:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47959761</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=47959761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47959761</guid></item><item><title><![CDATA[New comment by suncore in "God sleeps in the minerals"]]></title><description><![CDATA[
<p>If "dead" things look this much alive, imagine how hard it is to determine life on other planets. Real life could look much more dull than these things :-)</p>
]]></description><pubDate>Wed, 15 Apr 2026 16:09:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47781135</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=47781135</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47781135</guid></item><item><title><![CDATA[New comment by suncore in "Debunking Zswap and Zram Myths"]]></title><description><![CDATA[
<p>Cheap QLC drives become super slow when it is starting to get fairly full and starts garbage collecting (collecting SLC writes into QLC at maybe 10MB/s). IMHO this is not good enough for an OS drive.</p>
]]></description><pubDate>Wed, 25 Mar 2026 14:14:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47517633</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=47517633</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47517633</guid></item><item><title><![CDATA[New comment by suncore in "Debunking Zswap and Zram Myths"]]></title><description><![CDATA[
<p>Very easy to reproduce: 1. Buy cheap QLC drive. 2. Fill with Steam games. 3. Delete some steam games and download new games. 4. Watch write speeds tank to zero for long periods when downloading.<p>It's due to garbage collecting on very slow QLC NAND. You won't see it until the drive starts to get 60%+ full. Until then, the drive pretends it is an SLC with very fast writes, but then it starts to show its true colors. Yuck.</p>
]]></description><pubDate>Wed, 25 Mar 2026 14:10:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47517574</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=47517574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47517574</guid></item><item><title><![CDATA[New comment by suncore in "Voxile: A ray-traced game made in its own engine and programming language"]]></title><description><![CDATA[
<p>About the Lobster language used: The first thing I do when encountering a new language is look at the memory management, since what I want to do with a piece of code is usually build and manipulate data in a safe and efficient manner, so this is central. I am happy to see Lobster seems to be trying to take a new(ish) and pragmatical approach to memory management and that there is a whole document describing it in detail (<a href="https://aardappel.github.io/lobster/memory_management.html" rel="nofollow">https://aardappel.github.io/lobster/memory_management.html</a>) which means the language creator agrees that this is important. Also happy to see the language seems to support fast memory management in a multi threaded environment, which is absolutely not self evident in many languages.</p>
]]></description><pubDate>Wed, 04 Mar 2026 09:48:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47245250</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=47245250</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47245250</guid></item><item><title><![CDATA[New comment by suncore in "Systems Thinking"]]></title><description><![CDATA[
<p>Build what you know you need now. Refactor when things grow. Doesn't have to be rocket science.</p>
]]></description><pubDate>Fri, 06 Feb 2026 12:42:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46912109</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=46912109</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46912109</guid></item><item><title><![CDATA[New comment by suncore in "TeraWave Satellite Communications Network"]]></title><description><![CDATA[
<p>According to <a href="https://www.youtube.com/watch?v=b66ZZ05wKC0" rel="nofollow">https://www.youtube.com/watch?v=b66ZZ05wKC0</a> this might end very badly very soon.</p>
]]></description><pubDate>Wed, 21 Jan 2026 21:08:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=46711583</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=46711583</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46711583</guid></item><item><title><![CDATA[New comment by suncore in "Stranger Things creator says turn off “garbage” settings"]]></title><description><![CDATA[
<p>I turned off HDR. Much happier now that I can see what's going on on the screen.</p>
]]></description><pubDate>Tue, 30 Dec 2025 12:22:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46432598</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=46432598</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46432598</guid></item><item><title><![CDATA[New comment by suncore in "Stranger Things creator says turn off “garbage” settings"]]></title><description><![CDATA[
<p>24 fps looks like shit. Hurts my brain. Ain't turning off smooth motion :-)</p>
]]></description><pubDate>Tue, 30 Dec 2025 10:44:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46431850</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=46431850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46431850</guid></item><item><title><![CDATA[New comment by suncore in "Baldur's Gate 3 Steam Deck – Native Version"]]></title><description><![CDATA[
<p>There is an interesting discussion about the need for ray tracing in one of the later Digital Foundry videos. The argument goes that sometimes baked lighting is impractical due to the size of the maps and how much dynamic lighting you need. The latest Doom game is one such game where light maps would be 100s of GBs. But I guess most other games are fine with baked lighting.</p>
]]></description><pubDate>Wed, 24 Sep 2025 13:27:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=45360021</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=45360021</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45360021</guid></item><item><title><![CDATA[New comment by suncore in "Analyzing IPv4 Trades with Gnuplot"]]></title><description><![CDATA[
<p>Maybe the buyers started migrating to IPv6 when they saw how expensive IPv4 addresses are and there is a delay before they actually migrate. IPv4 addresses are way more expensive than I thought, upwards of $60 per address, jeez...</p>
]]></description><pubDate>Mon, 09 Jun 2025 09:11:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=44222625</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=44222625</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44222625</guid></item><item><title><![CDATA[New comment by suncore in "Orphaning bcachefs-tools in Debian"]]></title><description><![CDATA[
<p>Splitting a piece of software into multiple pieces and shipping the pieces (dependencies) independently is sometimes a good idea, but it has its limits. Maybe the limit should be for dependencies which are very stable and used by many packages (libc, etc.). The hard line policy enforced by Debian here obviously is not working. Happy to see other distros solve this better. This might become really problematic for Debian in the future.</p>
]]></description><pubDate>Sat, 31 Aug 2024 13:42:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=41408812</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=41408812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41408812</guid></item><item><title><![CDATA[New comment by suncore in "GitHub is preparing for IPv6 support for Github.com"]]></title><description><![CDATA[
<p>That should be 16 IPv6 /64 networks, right? Which means Azure gives you a /60 prefix, I guess?</p>
]]></description><pubDate>Mon, 05 Feb 2024 08:10:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=39258517</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=39258517</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39258517</guid></item><item><title><![CDATA[New comment by suncore in "All programming philosophies are about state"]]></title><description><![CDATA[
<p>Data (state, context, whatever) is more important to structure than code. Make sure your programming language lets you structure data the way you feel is natural. The code comes later and the main function is to massage the data. At least this is how I usually think about it, but everyones mind works differently... :-)</p>
]]></description><pubDate>Tue, 07 Feb 2023 10:22:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=34690934</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=34690934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34690934</guid></item><item><title><![CDATA[New comment by suncore in "Ask HN: What's your favorite illustration in computer science?"]]></title><description><![CDATA[
<p>DPDK/SRIOV eats the interface so Linux kernel does not see it at all. The above diagram is kind of irrelevant as it would look like a giant bypass.</p>
]]></description><pubDate>Fri, 13 Jan 2023 14:55:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=34368531</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=34368531</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34368531</guid></item><item><title><![CDATA[New comment by suncore in "Directory Opus – King of the Dual Panes"]]></title><description><![CDATA[
<p>I loved directory opus so much on the Amiga that I eventuelly wrote not one but three variants of it for Linux, albeit much simpler. The latest one I still use and maintain and you're welcome to try it at <a href="https://github.com/suncore/dflynav">https://github.com/suncore/dflynav</a></p>
]]></description><pubDate>Wed, 28 Dec 2022 20:52:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=34165807</link><dc:creator>suncore</dc:creator><comments>https://news.ycombinator.com/item?id=34165807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34165807</guid></item></channel></rss>