<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: milliams</title><link>https://news.ycombinator.com/user?id=milliams</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 12 Jul 2026 01:45:25 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=milliams" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Rust 1.97.0]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/">https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48845458">https://news.ycombinator.com/item?id=48845458</a></p>
<p>Points: 24</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 09 Jul 2026 13:26:15 +0000</pubDate><link>https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=48845458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48845458</guid></item><item><title><![CDATA[New comment by milliams in "Preparing for KDE Plasma's Last X11-Supported Release"]]></title><description><![CDATA[
<p>The main blocker I have for moving is the poor session management. On X11 for decades I've been able to log out of my KDE session and when I log in again, all my Konsole windows re-open with the tabs open in the same folders, Dolphin opens with all the tabs open to the same locations etc.<p>I think they recently added support at the KWin level for reopening windows to the right desktops etc but as far as each individual apps, it seems to be up to them individually to get this working again. I would have thought that at least for the KDE apps, they could just have a compatibility layer from the X11 session management to make it work but it doesn't seem there yet.</p>
]]></description><pubDate>Wed, 03 Jun 2026 19:58:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48389138</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=48389138</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48389138</guid></item><item><title><![CDATA[New comment by milliams in "London's Smallest Public Sculptures"]]></title><description><![CDATA[
<p>I just had to stop reading for this reason.</p>
]]></description><pubDate>Fri, 15 May 2026 15:11:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48149723</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=48149723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48149723</guid></item><item><title><![CDATA[New comment by milliams in "(Social) media manipulation in one image"]]></title><description><![CDATA[
<p>The problem is that everyone dies some day so there's never going to be equality between causes of death and reporting rates. You might expect some correlation between <i>preventable</i> causes and reporting, and in-part that's what's being seen here.</p>
]]></description><pubDate>Mon, 22 Dec 2025 14:40:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=46354459</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=46354459</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46354459</guid></item><item><title><![CDATA[New comment by milliams in "Mozilla's New CEO Confirms Firefox Will Become an "AI Browser""]]></title><description><![CDATA[
<p>It bothers me that it's not even a "AI web browser", but an "AI browser". I don't want to browse "AI", I want access to the web.</p>
]]></description><pubDate>Thu, 18 Dec 2025 12:40:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=46311935</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=46311935</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46311935</guid></item><item><title><![CDATA[New comment by milliams in "Using Python for Scripting"]]></title><description><![CDATA[
<p><a href="https://peps.python.org/pep-0723/" rel="nofollow">https://peps.python.org/pep-0723/</a>, e.g.:<p><pre><code>  # /// script
  # requires-python = ">=3.11"
  # dependencies = [
  #   "requests<3",
  #   "rich",
  # ]
  # ///
  
  import requests
  from rich.pretty import pprint
  
  resp = requests.get("https://peps.python.org/api/peps.json")
  data = resp.json()
  pprint([(k, v["title"]) for k, v in data.items()][:10])</code></pre></p>
]]></description><pubDate>Fri, 12 Dec 2025 14:49:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=46244651</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=46244651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46244651</guid></item><item><title><![CDATA[New comment by milliams in "UniFi 5G"]]></title><description><![CDATA[
<p>Small aside, AVM have now formally rebranded as "FRITZ!"</p>
]]></description><pubDate>Fri, 05 Dec 2025 10:42:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=46159505</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=46159505</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46159505</guid></item><item><title><![CDATA[New comment by milliams in "Cloudflare outage on November 18, 2025 post mortem"]]></title><description><![CDATA[
<p><p><pre><code>  [lints.clippy]
  dbg_macro = "deny"
  unwrap_used = "deny"
  expect_used = "deny"</code></pre></p>
]]></description><pubDate>Wed, 19 Nov 2025 10:33:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=45977943</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45977943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45977943</guid></item><item><title><![CDATA[New comment by milliams in "IKEA launches new smart home range with 21 Matter-compatible products"]]></title><description><![CDATA[
<p><a href="https://www.theverge.com/tech/814928/ikea-matter-thread-dirigera-smart-home-interview" rel="nofollow">https://www.theverge.com/tech/814928/ikea-matter-thread-diri...</a> has some quotes from IKEA saying that they're using Thread. It's strange they didn't say in this release though.</p>
]]></description><pubDate>Thu, 06 Nov 2025 13:56:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=45835275</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45835275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45835275</guid></item><item><title><![CDATA[New comment by milliams in "State of Terminal Emulators in 2025: The Errant Champions"]]></title><description><![CDATA[
<p>Likewise I noticed that Konsole was version 23.08. I've just submitted a PR (<a href="https://github.com/jquast/ucs-detect/pull/14" rel="nofollow">https://github.com/jquast/ucs-detect/pull/14</a>) to update it to 25.08.</p>
]]></description><pubDate>Mon, 03 Nov 2025 17:11:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=45801452</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45801452</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45801452</guid></item><item><title><![CDATA[New comment by milliams in "I built my own CityMapper"]]></title><description><![CDATA[
<p>Why are the table and the description of the RAPTOR algorithm in the article images rather than text?</p>
]]></description><pubDate>Sat, 01 Nov 2025 16:43:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45783118</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45783118</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45783118</guid></item><item><title><![CDATA[Closure Captures]]></title><description><![CDATA[
<p>Article URL: <a href="https://andwass.github.io/rust/2025/10/23/closure-captures.html">https://andwass.github.io/rust/2025/10/23/closure-captures.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45772619">https://news.ycombinator.com/item?id=45772619</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 31 Oct 2025 14:52:21 +0000</pubDate><link>https://andwass.github.io/rust/2025/10/23/closure-captures.html</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45772619</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45772619</guid></item><item><title><![CDATA[New comment by milliams in "From VS Code to Helix"]]></title><description><![CDATA[
<p>I'd also argue that VS Code is not open source - at least not the version that 98% of people run. If you download VS Code from almost anywhere (and are not using Codium) then you are subject to the licence terms at <a href="https://code.visualstudio.com/license" rel="nofollow">https://code.visualstudio.com/license</a> which says you may not:<p>- reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except and solely to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;<p>- remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;<p>- use the software in any way that is against the law;<p>- share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use.</p>
]]></description><pubDate>Thu, 30 Oct 2025 11:00:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=45758587</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45758587</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45758587</guid></item><item><title><![CDATA[New comment by milliams in "Syntax highlighting is a waste of an information channel (2020)"]]></title><description><![CDATA[
<p>KDevelop's semantic highlighting where each variable was given its own colour was always the one I found most useful. It made tracking the meaning of some code much easier than just highlighting by token category.</p>
]]></description><pubDate>Fri, 17 Oct 2025 06:54:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45613980</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45613980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45613980</guid></item><item><title><![CDATA[Photographic Revision vs. Reality]]></title><description><![CDATA[
<p>Article URL: <a href="https://hackerfactor.com/blog/index.php?/archives/1079-Photographic-Revision-vs-Reality.html">https://hackerfactor.com/blog/index.php?/archives/1079-Photographic-Revision-vs-Reality.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45492261">https://news.ycombinator.com/item?id=45492261</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 06 Oct 2025 15:10:26 +0000</pubDate><link>https://hackerfactor.com/blog/index.php?/archives/1079-Photographic-Revision-vs-Reality.html</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45492261</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45492261</guid></item><item><title><![CDATA[New comment by milliams in "Gem.coop"]]></title><description><![CDATA[
<p>Based on the comments getting downvoted, it feels like some brigading going on.</p>
]]></description><pubDate>Mon, 06 Oct 2025 11:09:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=45490072</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45490072</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45490072</guid></item><item><title><![CDATA[Winning a bet about "six", the Python 2 compatibility shim]]></title><description><![CDATA[
<p>Article URL: <a href="https://sethmlarson.dev/winning-a-bet-about-six-the-python-2-compatibility-shim">https://sethmlarson.dev/winning-a-bet-about-six-the-python-2-compatibility-shim</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45439943">https://news.ycombinator.com/item?id=45439943</a></p>
<p>Points: 9</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 01 Oct 2025 16:47:22 +0000</pubDate><link>https://sethmlarson.dev/winning-a-bet-about-six-the-python-2-compatibility-shim</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45439943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45439943</guid></item><item><title><![CDATA[New comment by milliams in "Ruby Central's Attack on RubyGems [pdf]"]]></title><description><![CDATA[
<p><p><pre><code>  >- Immediately restore access to all maintainers removed during this incident. […]

  Markdown bullet points in a place with no markdown support.
</code></pre>
Markdown quote markers in a place with no markdown support.</p>
]]></description><pubDate>Fri, 19 Sep 2025 14:31:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45302101</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45302101</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45302101</guid></item><item><title><![CDATA[New comment by milliams in "Ruby Central's Attack on RubyGems [pdf]"]]></title><description><![CDATA[
<p>Based on the OP, the initial changes were made 10 days ago - more than enough time to communicate something publicly.</p>
]]></description><pubDate>Fri, 19 Sep 2025 14:04:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45301812</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45301812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45301812</guid></item><item><title><![CDATA[New comment by milliams in "Substack just killed the creator economy"]]></title><description><![CDATA[
<p>"<i>their</i> creator economy", not "<i>the</i> creator economy".</p>
]]></description><pubDate>Mon, 01 Sep 2025 08:10:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=45090635</link><dc:creator>milliams</dc:creator><comments>https://news.ycombinator.com/item?id=45090635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45090635</guid></item></channel></rss>