Live data from Hacker News

Why isn’t dotnet core popular among startups?

old.reddit.com

121–124 of 124 posts

Re: Why isn’t dotnet core popular among startups?

#121
post #19

Do people actually like C#? It seems like a really bloated language with a ton of features.

I actually enjoy it. And this is coming from someone that spent a lot of time in C, assembler, lisp, Scala, Java, and so on....C# is much nicer than it used to be, and gets out of the way. Tooling is so much better than it was just 5 years ago. I'm using rider on an m2 with no issues. Of course it's not free- regular vs2022 won't even open on a mac. Most of the things I don't like about C# mostly have to do with the…

>I'm using rider on an m2 with no issues. Of course it's not free

I just don't understand the "Rider is not free" thing. Just come on now, guys. It's like $15 a month, a price of 1 good meal pretty much anywhere in the world. In my 3rd world country, even students could afford it. If you earn money with code, it should be no brainer.

If you are a someone who is just learning and hacking around, or just want everything to be free forever, then VS Code with C# DevKit is more than adequate, you can even do professional work with it.

I'm saying this assuming you are on Mac/Linux. On Windows, the powerful (and free) VS Community Edition will get you covered, unless your revenue exceeds 1M, in which case you probably can afford the VS Professional license.

Re: Why isn’t dotnet core popular among startups?

#122

The naming truly sucks. You search for .NET and you find .NET framework, ASP.NET, .NET Core, .NET Framework, what even is .NET Xamarin MAUI? You look for a solution and find an [AttributeDecorator] that no longer works or is considered bad practise, or is it the new silver bullet - who knows? You better return IHttpActionResult, or do you set the context.Response? Hmm. It's much easier with younger Frameworks like Sv…

The naming situation has been the biggest barrier to adoption for me. I’d love a ‘definitive’ guide or set of docs for how to approach the ecosystem in 2023 if anyone has recommendations :)

Re: Why isn’t dotnet core popular among startups?

#123

The naming truly sucks. You search for .NET and you find .NET framework, ASP.NET, .NET Core, .NET Framework, what even is .NET Xamarin MAUI? You look for a solution and find an [AttributeDecorator] that no longer works or is considered bad practise, or is it the new silver bullet - who knows? You better return IHttpActionResult, or do you set the context.Response? Hmm. It's much easier with younger Frameworks like Sv…

The naming situation has been the biggest barrier to adoption for me. I’d love a ‘definitive’ guide or set of docs for how to approach the ecosystem in 2023 if anyone has recommendations :)

Well here is a list of all of the words and their definitions, but the complexity still remains https://learn.microsoft.com/en-us/dotnet/standard/glossary

Re: Why isn’t dotnet core popular among startups?

#124

Earlier quoted context omitted.

Uh, what, I'm not seeing it? $ apt search dotnet Sorting... Done Full Text Search... Done libgtk-dotnet3.0-cil/testing,unstable 2.99.3-4.1 amd64 GTK.NET library libgtk-dotnet3.0-cil-dev/testing,unstable 2.99.3-4.1 amd64 GTK.NET library - development files libgtk2.0-cil/testing,unstable 2.12.40-3.1 amd64 CLI binding for the GTK+ toolkit 2.12 libgtk2.0-cil-dev/testing,unstable 2.12.40-3.1 amd64 CLI binding for the GTK+…

sudo apt-get update && \ sudo apt-get install -y dotnet-sdk-7.0 Repo wget https://packages.microsoft.com/config/debian/12/packages-mic... -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb rm packages-microsoft-prod.deb

That you point at some random third-party repo (compared to the distro I'm using) kinda proves my point...
Post reply on HN