HackerTrans
TopNewTrendsCommentsPastAskShowJobs

runesoerensen

27,310 karmajoined 16 yıl önce
.NET at Heroku. Co-founder of AppHarbor. Hacker

Submissions

Coding Is a Right

nytimes.com
3 points·by runesoerensen·3 saat önce·2 comments

.NET 11 Preview 1 is now available

devblogs.microsoft.com
6 points·by runesoerensen·5 ay önce·0 comments

Go 1.26 Release Notes

go.dev
56 points·by runesoerensen·5 ay önce·6 comments

xAI Raises $20B Series E

x.ai
24 points·by runesoerensen·6 ay önce·11 comments

Cloud Native Heroku Magic

heroku.com
2 points·by runesoerensen·8 ay önce·0 comments

Heroku Support for .NET 10

heroku.com
117 points·by runesoerensen·8 ay önce·43 comments

.NET 10

devblogs.microsoft.com
612 points·by runesoerensen·8 ay önce·583 comments

Welcome to Heroku Vibes

heroku.com
5 points·by runesoerensen·9 ay önce·0 comments

Apple unveils M1, its first system-on-a-chip for portable Mac computers

9to5mac.com
1,365 points·by runesoerensen·6 yıl önce·1,346 comments

comments

runesoerensen
·2 saat önce·discuss
They're using/testing a few different versions. I used the front page title at the time I shared the link (which has now been changed to the first title you mentioned)
runesoerensen
·8 ay önce·discuss
Fair enough - I meant that, at least in Microsoft's own communication, they started more consistently referring to .NET Framework 4.x to differentiate it from first .NET Core and later .NET.

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.
runesoerensen
·8 ay önce·discuss
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?

Also, the AppHarbor blog is technically still running, so there's that :)

Hope you're doing well!
runesoerensen
·8 ay önce·discuss
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.

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:

  # 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
The "classic" Heroku buildpack shown in the demo video is just a thin wrapper around the CNB implementation: https://github.com/heroku/buildpacks-dotnet
runesoerensen
·8 ay önce·discuss
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].

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).

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.

[0]:https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotn...

[1]:https://en.wikipedia.org/wiki/Microsoft_PlaysForSure
runesoerensen
·7 yıl önce·discuss
More info in the press release https://www.apple.com/newsroom/2019/06/the-new-ipados-powers...
runesoerensen
·9 yıl önce·discuss
Intel response https://newsroom.intel.com/news/intel-responds-to-security-r...
runesoerensen
·9 yıl önce·discuss
Related discussion https://news.ycombinator.com/item?id=16052451