<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: runesoerensen</title><link>https://news.ycombinator.com/user?id=runesoerensen</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 08 May 2026 17:17:50 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=runesoerensen" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[.NET 11 Preview 1 is now available]]></title><description><![CDATA[
<p>Article URL: <a href="https://devblogs.microsoft.com/dotnet/dotnet-11-preview-1/">https://devblogs.microsoft.com/dotnet/dotnet-11-preview-1/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46968815">https://news.ycombinator.com/item?id=46968815</a></p>
<p>Points: 6</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 10 Feb 2026 23:55:07 +0000</pubDate><link>https://devblogs.microsoft.com/dotnet/dotnet-11-preview-1/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=46968815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46968815</guid></item><item><title><![CDATA[Go 1.26 Release Notes]]></title><description><![CDATA[
<p>Article URL: <a href="https://go.dev/doc/go1.26">https://go.dev/doc/go1.26</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46965799">https://news.ycombinator.com/item?id=46965799</a></p>
<p>Points: 56</p>
<p># Comments: 6</p>
]]></description><pubDate>Tue, 10 Feb 2026 19:49:59 +0000</pubDate><link>https://go.dev/doc/go1.26</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=46965799</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46965799</guid></item><item><title><![CDATA[xAI Raises $20B Series E]]></title><description><![CDATA[
<p>Article URL: <a href="https://x.ai/news/series-e">https://x.ai/news/series-e</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46517787">https://news.ycombinator.com/item?id=46517787</a></p>
<p>Points: 24</p>
<p># Comments: 11</p>
]]></description><pubDate>Tue, 06 Jan 2026 20:00:02 +0000</pubDate><link>https://x.ai/news/series-e</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=46517787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46517787</guid></item><item><title><![CDATA[Cloud Native Heroku Magic]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.heroku.com/blog/heroku-cloud-native-buildpacks/">https://www.heroku.com/blog/heroku-cloud-native-buildpacks/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45909359">https://news.ycombinator.com/item?id=45909359</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 13 Nov 2025 01:35:06 +0000</pubDate><link>https://www.heroku.com/blog/heroku-cloud-native-buildpacks/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45909359</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45909359</guid></item><item><title><![CDATA[New comment by runesoerensen in "Heroku Support for .NET 10"]]></title><description><![CDATA[
<p>Fair enough - I meant that, at least in Microsoft's own communication, they started more consistently referring to .NET <i>Framework</i> 4.x to differentiate it from first .NET Core and later .NET.<p>While it was always called .NET Framework, it was very commonly referred to simply as .NET (e.g. .NET 4.5) - and the "Microsoft .NET" logo was widely used in .NET Framework branding/marketing.</p>
]]></description><pubDate>Wed, 12 Nov 2025 20:40:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45906306</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45906306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45906306</guid></item><item><title><![CDATA[New comment by runesoerensen in "Heroku Support for .NET 10"]]></title><description><![CDATA[
<p>Hi Joel! I guess you could say AppHarbor's spirit lives on - ".NET on Heroku" feels like a pretty fitting successor to "Heroku for .NET", right?<p>Also, the AppHarbor blog <i>is</i> technically still running, so there's that :)<p>Hope you're doing well!</p>
]]></description><pubDate>Wed, 12 Nov 2025 05:58:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45896812</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45896812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45896812</guid></item><item><title><![CDATA[New comment by runesoerensen in "Heroku Support for .NET 10"]]></title><description><![CDATA[
<p>I wrote this post - for anyone curious, Heroku's .NET support is built on our open source .NET Cloud Native Buildpack (CNB), which is written in Rust and produces standard OCI images.<p>You can use it anywhere, even locally, for free. The example in the post uses the .NET 10 file-based app feature we added support for today, so if you want to try the same functionality locally, you can do something like this:<p><pre><code>  # Create a minimal .NET 10 file-based app
  echo 'Console.WriteLine("Hello HN");' > Hello.cs

  # Build an OCI image using the .NET CNB
  pack build hello-hn --builder heroku/builder:24

  # Run it with Docker
  docker run --rm -it --entrypoint hello hello-hn

  # Output:
  Hello HN
</code></pre>
The "classic" Heroku buildpack shown in the demo video is just a thin wrapper around the CNB implementation: <a href="https://github.com/heroku/buildpacks-dotnet" rel="nofollow">https://github.com/heroku/buildpacks-dotnet</a></p>
]]></description><pubDate>Wed, 12 Nov 2025 04:43:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=45896436</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45896436</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45896436</guid></item><item><title><![CDATA[New comment by runesoerensen in "Heroku Support for .NET 10"]]></title><description><![CDATA[
<p>Might be more confusing when you consider that ".NET 5" is actually the continuation of ".NET Core 3.1", not ".NET Framework 4.x"[0].<p>Microsoft has historically been pretty bad at naming stuff (sometimes hilariously so, see Microsoft PlaysForSure[1] for an example - spoiler: it surely didn't play for long).<p>The rebranding from .NET Core 3.1 to .NET 5, and from .NET 4.x to .NET Framework, did make sense to me though - and increasingly so as development continues on ".NET > 5" with yearly releases, while ".NET Framework 4.x" is in maintenance mode.<p>[0]:<a href="https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-5" rel="nofollow">https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotn...</a><p>[1]:<a href="https://en.wikipedia.org/wiki/Microsoft_PlaysForSure" rel="nofollow">https://en.wikipedia.org/wiki/Microsoft_PlaysForSure</a></p>
]]></description><pubDate>Wed, 12 Nov 2025 03:50:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=45896208</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45896208</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45896208</guid></item><item><title><![CDATA[Heroku Support for .NET 10]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.heroku.com/blog/support-for-dotnet-10-lts-what-developers-need-know/">https://www.heroku.com/blog/support-for-dotnet-10-lts-what-developers-need-know/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45893646">https://news.ycombinator.com/item?id=45893646</a></p>
<p>Points: 117</p>
<p># Comments: 43</p>
]]></description><pubDate>Tue, 11 Nov 2025 22:18:17 +0000</pubDate><link>https://www.heroku.com/blog/support-for-dotnet-10-lts-what-developers-need-know/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45893646</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45893646</guid></item><item><title><![CDATA[.NET 10]]></title><description><![CDATA[
<p>Article URL: <a href="https://devblogs.microsoft.com/dotnet/announcing-dotnet-10/">https://devblogs.microsoft.com/dotnet/announcing-dotnet-10/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45888620">https://news.ycombinator.com/item?id=45888620</a></p>
<p>Points: 612</p>
<p># Comments: 583</p>
]]></description><pubDate>Tue, 11 Nov 2025 15:44:35 +0000</pubDate><link>https://devblogs.microsoft.com/dotnet/announcing-dotnet-10/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45888620</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45888620</guid></item><item><title><![CDATA[Welcome to Heroku Vibes]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.heroku.com/blog/turn-ideas-into-apps-heroku-vibes-pilot/">https://www.heroku.com/blog/turn-ideas-into-apps-heroku-vibes-pilot/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45517767">https://news.ycombinator.com/item?id=45517767</a></p>
<p>Points: 5</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 08 Oct 2025 16:12:28 +0000</pubDate><link>https://www.heroku.com/blog/turn-ideas-into-apps-heroku-vibes-pilot/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=45517767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45517767</guid></item><item><title><![CDATA[Heroku Adds Support for uv]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.heroku.com/blog/local-speed-smooth-deploys-heroku-adds-support-uv/">https://www.heroku.com/blog/local-speed-smooth-deploys-heroku-adds-support-uv/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44182753">https://news.ycombinator.com/item?id=44182753</a></p>
<p>Points: 6</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 04 Jun 2025 16:50:40 +0000</pubDate><link>https://www.heroku.com/blog/local-speed-smooth-deploys-heroku-adds-support-uv/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=44182753</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44182753</guid></item><item><title><![CDATA[NLWeb]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/microsoft/NLWeb">https://github.com/microsoft/NLWeb</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44032313">https://news.ycombinator.com/item?id=44032313</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 19 May 2025 17:29:39 +0000</pubDate><link>https://github.com/microsoft/NLWeb</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=44032313</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44032313</guid></item><item><title><![CDATA[We ended up rewriting NuGet Restore in .NET 9]]></title><description><![CDATA[
<p>Article URL: <a href="https://devblogs.microsoft.com/dotnet/rewriting-nuget-restore-in-dotnet-9/">https://devblogs.microsoft.com/dotnet/rewriting-nuget-restore-in-dotnet-9/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43634611">https://news.ycombinator.com/item?id=43634611</a></p>
<p>Points: 39</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 09 Apr 2025 17:12:53 +0000</pubDate><link>https://devblogs.microsoft.com/dotnet/rewriting-nuget-restore-in-dotnet-9/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=43634611</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43634611</guid></item><item><title><![CDATA[Heroku Fir: Dive into the New Platform Capabilities]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.heroku.com/heroku-fir-generally-available-new-platform-capabilities">https://blog.heroku.com/heroku-fir-generally-available-new-platform-capabilities</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43557730">https://news.ycombinator.com/item?id=43557730</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 02 Apr 2025 15:24:33 +0000</pubDate><link>https://blog.heroku.com/heroku-fir-generally-available-new-platform-capabilities</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=43557730</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43557730</guid></item><item><title><![CDATA[.NET on Heroku Now Generally Available]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.heroku.com/dotnet-now-generally-available">https://blog.heroku.com/dotnet-now-generally-available</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43554339">https://news.ycombinator.com/item?id=43554339</a></p>
<p>Points: 17</p>
<p># Comments: 7</p>
]]></description><pubDate>Wed, 02 Apr 2025 07:08:42 +0000</pubDate><link>https://blog.heroku.com/dotnet-now-generally-available</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=43554339</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43554339</guid></item><item><title><![CDATA[Heroku extension for VS Code now generally available]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.heroku.com/heroku-extension-visual-studio-code-now-generally-available">https://blog.heroku.com/heroku-extension-visual-studio-code-now-generally-available</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43260787">https://news.ycombinator.com/item?id=43260787</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 04 Mar 2025 23:17:16 +0000</pubDate><link>https://blog.heroku.com/heroku-extension-visual-studio-code-now-generally-available</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=43260787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43260787</guid></item><item><title><![CDATA[.NET 10 Preview 1 is now available]]></title><description><![CDATA[
<p>Article URL: <a href="https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/">https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43176605">https://news.ycombinator.com/item?id=43176605</a></p>
<p>Points: 10</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 25 Feb 2025 20:04:10 +0000</pubDate><link>https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=43176605</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43176605</guid></item><item><title><![CDATA[New comment by runesoerensen in ".NET Support on Heroku"]]></title><description><![CDATA[
<p>Yep you can use our CNBs anywhere! More info and instructions here: <a href="https://github.com/heroku/buildpacks">https://github.com/heroku/buildpacks</a></p>
]]></description><pubDate>Tue, 03 Dec 2024 03:14:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=42302773</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=42302773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42302773</guid></item><item><title><![CDATA[New comment by runesoerensen in ".NET Support on Heroku"]]></title><description><![CDATA[
<p>We’ve been working the next generation of Heroku - and actually also launching that this week! Check out our post on it here  <a href="https://blog.heroku.com/planting-new-platform-roots-cloud-native-fir" rel="nofollow">https://blog.heroku.com/planting-new-platform-roots-cloud-na...</a></p>
]]></description><pubDate>Tue, 03 Dec 2024 02:36:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=42302598</link><dc:creator>runesoerensen</dc:creator><comments>https://news.ycombinator.com/item?id=42302598</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42302598</guid></item></channel></rss>