<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: korijn</title><link>https://news.ycombinator.com/user?id=korijn</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 12:34:54 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=korijn" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by korijn in "I spent 5 years in DevOps – Solutions engineering gave me what I was missing"]]></title><description><![CDATA[
<p>Inspiring article. Well written. Totally feeling it!</p>
]]></description><pubDate>Fri, 06 Feb 2026 21:41:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=46918518</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=46918518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46918518</guid></item><item><title><![CDATA[New comment by korijn in "I don't think AGI is right around the corner"]]></title><description><![CDATA[
<p>The ability to read is all it takes to have AGI?</p>
]]></description><pubDate>Sun, 06 Jul 2025 21:35:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=44484290</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=44484290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44484290</guid></item><item><title><![CDATA[New comment by korijn in "Fun with uv and PEP 723"]]></title><description><![CDATA[
<p>There's no lockfile or anything with this approach right? So in a year or two all of these scripts will be broken because people didn't pin their dependencies?<p>I like it though. It's very convenient.</p>
]]></description><pubDate>Tue, 24 Jun 2025 20:57:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=44370971</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=44370971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44370971</guid></item><item><title><![CDATA[New comment by korijn in "AWS forms EU-based cloud unit as customers fret"]]></title><description><![CDATA[
<p>Are you an EU citizen?</p>
]]></description><pubDate>Tue, 03 Jun 2025 22:07:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=44175304</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=44175304</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44175304</guid></item><item><title><![CDATA[New comment by korijn in "Bauplan – Git-for-data pipelines on object storage"]]></title><description><![CDATA[
<p>How does this compare to dbt? Seems like it can do the same?</p>
]]></description><pubDate>Wed, 16 Apr 2025 15:36:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43706776</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=43706776</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43706776</guid></item><item><title><![CDATA[New comment by korijn in "Software development topics I've changed my mind on"]]></title><description><![CDATA[
<p>Is it ironic that this comment has evoked a discussion on minutiae?</p>
]]></description><pubDate>Wed, 05 Feb 2025 12:29:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42947550</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=42947550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42947550</guid></item><item><title><![CDATA[New comment by korijn in "Ask HN: Business logic is slowing us down"]]></title><description><![CDATA[
<p>Take ownership.</p>
]]></description><pubDate>Sat, 27 Jul 2024 22:29:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=41089780</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=41089780</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41089780</guid></item><item><title><![CDATA[New comment by korijn in "Python Has Too Many Package Managers"]]></title><description><![CDATA[
<p>I will! I'm sure it's faster when the data is available. But when it's not, in the common circumstances described above, network and disk IO are still the same unchanged bottlenecks, for any package manager.<p>In conversations like this, we are all too quick to project our experiences on the package managers and not sharing in what circumstances we are using them.</p>
]]></description><pubDate>Tue, 09 Jul 2024 08:47:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=40913833</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=40913833</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40913833</guid></item><item><title><![CDATA[New comment by korijn in "Python Has Too Many Package Managers"]]></title><description><![CDATA[
<p>I have worked with poetry professionally for about 5 years now and I am not looking back. It is exceptionally good. Dependency resolution speed is not an issue <i>beyond the first run</i> since all that hard to acquire metadata is actually cached in a local index.<p>And even that first run is not particularly slow - _unless_ you depend on packages that are not available as wheels, which last I checked is not nearly as common nowadays as it was 10 years ago. However it can still happen: for example, if you are working with python 3.8 and you are using the latest version of some fancy library, they may have already stopped building wheels for that version of python. That means the package manager has to fall back to the sdist, and actually run the build scripts to acquire the metadata.<p>On top of all this, private package feeds (like the one provided by azure devops) sometimes don't provide a metadata API at all, meaning the package manager has to download every single package just to get the metadata.<p>The important bit of my little wall of text here though is that this is all true for all the other package managers as well. You can't necessarily attribute slow dependency resolution to a solver being written in C++ or pure python, given all of these other compounding factors which are often overlooked.</p>
]]></description><pubDate>Mon, 08 Jul 2024 18:47:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=40908146</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=40908146</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40908146</guid></item><item><title><![CDATA[New comment by korijn in "Python Gotcha: strip, lstrip, rstrip can remove more than expected"]]></title><description><![CDATA[
<p>RTFM</p>
]]></description><pubDate>Sat, 27 Apr 2024 17:33:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=40181809</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=40181809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40181809</guid></item><item><title><![CDATA[New comment by korijn in "Patching requests for fun and (concurrent) profit"]]></title><description><![CDATA[
<p>Well, it doesn't necessarily have to be 10 or 20 years long, all it takes is for the timeframe to overlap with a certificate being revoked, I guess. Process lifetimes of a few months are definitely not uncommon. Anyway, I can see the tradeoff. There just needs to be a mechanism to disable this performance optimization, or to invalidate the cache (e.g. periodically).</p>
]]></description><pubDate>Fri, 26 Apr 2024 20:10:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=40173665</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=40173665</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40173665</guid></item><item><title><![CDATA[New comment by korijn in "Patching requests for fun and (concurrent) profit"]]></title><description><![CDATA[
<p>Doesn't this potentially create security problems if process lifetime is very long? Changes to the certificate store on the system will potentially not be picked up?</p>
]]></description><pubDate>Fri, 26 Apr 2024 15:38:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=40170785</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=40170785</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40170785</guid></item><item><title><![CDATA[New comment by korijn in "How to feed all the power-hungry AI data centers"]]></title><description><![CDATA[
<p>We should invent solutions for problems that we have, instead of wildly trying to apply this tech to everything we can think of. We are skipping the benefit/cost considerations.</p>
]]></description><pubDate>Sat, 16 Mar 2024 17:45:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=39727889</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=39727889</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39727889</guid></item><item><title><![CDATA[New comment by korijn in "Nix is a better Docker image builder than Docker's image builder"]]></title><description><![CDATA[
<p>What is an efficient process to avoid using versions with known vulnerabilities for long times when using a tool like stablebuild?</p>
]]></description><pubDate>Sat, 16 Mar 2024 15:19:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=39726676</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=39726676</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39726676</guid></item><item><title><![CDATA[New comment by korijn in "Leadership is a hell of a drug"]]></title><description><![CDATA[
<p>Are you implying leadership is not a skill that can be honed? Is being a leader not a profession?<p>Edit: instead of responding to individual comments, I will just edit this comment.<p>I am just a little bit sad about the emotional responses here on this thread, just echoing a sentiment, without much critical discourse.</p>
]]></description><pubDate>Thu, 07 Mar 2024 06:52:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=39625831</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=39625831</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39625831</guid></item><item><title><![CDATA[New comment by korijn in "Python 3.13 Gets a JIT"]]></title><description><![CDATA[
<p>Partly, yes, but do note he is still very much involved with the faster-cpython project via  Microsoft. Google faster cpython and van rossum to find some interviews and talks. You can also check out the faster-cpython project on github to read more.</p>
]]></description><pubDate>Tue, 09 Jan 2024 20:48:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=38931887</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=38931887</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38931887</guid></item><item><title><![CDATA[New comment by korijn in "You can't do that because I hate you"]]></title><description><![CDATA[
<p>The very first example in the article discredits efforts to add clear communication.</p>
]]></description><pubDate>Thu, 28 Dec 2023 23:14:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=38799930</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=38799930</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38799930</guid></item><item><title><![CDATA[New comment by korijn in "We’ll call it AI to sell it, machine learning to build it"]]></title><description><![CDATA[
<p>Also consuming enormous amounts of power and water</p>
]]></description><pubDate>Wed, 11 Oct 2023 14:40:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=37845009</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=37845009</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37845009</guid></item><item><title><![CDATA[New comment by korijn in "Warning AI industry could use as much energy as the Netherlands"]]></title><description><![CDATA[
<p>Absolutely insane. When will it be enough?</p>
]]></description><pubDate>Tue, 10 Oct 2023 22:04:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=37838240</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=37838240</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37838240</guid></item><item><title><![CDATA[New comment by korijn in "I got robbed of my first kernel contribution"]]></title><description><![CDATA[
<p>Fair enough. I've attempted to reword this to be more considerate of the possibilities.</p>
]]></description><pubDate>Wed, 27 Sep 2023 09:49:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=37672450</link><dc:creator>korijn</dc:creator><comments>https://news.ycombinator.com/item?id=37672450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37672450</guid></item></channel></rss>