Viewing profile — JamesNK
JamesNK
HN member- Joined
- Mon, Nov 15, 2010, 7:31 AM UTC
- HN karma
- 129
- Public activity
- 34 items
- HN profile
- View on Hacker News ↗
About JamesNK
No profile information was provided.
Recent public activity
-
comment
Comment #30669216
You're searching for ways to make things more difficult than they need to be. Make the simple easy. Make the complex possible.
-
comment
Comment #30667569
Because ASP.NET Core is a framework that is installed with .NET. It isn’t a set of Nuget packages. Why? .NET Core 1.x tried making everything a Nuget package and it was a disaster.…
-
comment
Comment #30667145
Here you go: net6.0 enable enable exe Just create an empty ASP.NET Core project, change the SDK, add a FrameworkReference and a OutputType. Read the console args and configure the …
-
comment
Comment #26488126
The error message is sent as a HTTP trailing header. Their server or client has a header size limit of 8kb.
- story
-
comment
Comment #24069327
It is strange that you couldn't find the empty web template. Every version of ASP.NET Core has come with one. Empty is the first option in the "Create a new ASP.NET Core web applic…
-
comment
Comment #23333081
The future of Silverlight and Flash died when mobile phones rejected browser plugins. No amount of good choices from MS/Adobe would change that.
-
comment
Comment #23016292
> gRPC encoded data is actually not tightly coupled to HTTP/2 frames. The headers frame, and the capability to have headers before AND after content is a requirement. gRPC requires…
-
comment
Comment #21057765
Developer on gRPC for .NET here. gRPC client requires HTTP/2, and HttpClient (the .NET library for making HTTP requests) didn't previously support HTTP/2. The gRPC client actually …
-
comment
Comment #18737327
Stardock has acted like scum through the whole ordeal. On top of the lawsuit against P/R... 1. They attempted to trick the UQM project leadership into signing a document that said …
-
comment
Comment #15545845
A stock price doesn't reflect how profitable you are today, it reflects how profitable you'll be tomorrow.
-
comment
Comment #15545814
He isn't criticizing the title, it's just a hot take on how the nature of starting a business has changed.
-
comment
Comment #14807713
Premium feature: reserve a set of lucky dice for your roles. $5/month
-
comment
Comment #14632786
A succinct way of putting it is there is a finite profit margin on consulting.
-
comment
Comment #14586050
.NET always preserves generic type information for reflection but there is code reuse when a generic type is used multiple times with different reference types, e.g. there is littl…
-
comment
Comment #14170345
> C#'s equivalent quixotic fever dream is probably LINQ. What? LINQ is terrific.
-
comment
Comment #13959117
You can .NET Native on your own machine for testing but the package uploaded to the store contains MSIL. The final .NET Native version is then compiled in the cloud. https://blogs.…
-
comment
Comment #13957266
UWP apps from the Windows Store already ban JIT compilation - at least for .NET apps. When .NET UWP applications are uploaded the store pre-compiles them on the server with .NET Na…
-
comment
Comment #13836093
I'm expecting it won't. With C# 7 tuples there will be less methods with out parameters in the future.
-
comment
Comment #13387604
It came from the video but I have personally found async methods to be significantly slower most of the time (although I've never sat down and figured out the exact amount). The re…
-
comment
Comment #13386055
> In fact, they're generally slightly slower An async method is much slower (40x) compared to a normal sync method. If you're writing a high performance library you need to be care…
-
comment
Comment #13103537
And the torpedo they dropped barely worked. Later in tests the US Navy found there was a 2/3 chance the torpedo would break up, not start or simply sink when it hit the water.
-
comment
Comment #10856647
You probably won't. This is .NET Core only. .NET Core is a cross platform slimmed down version of .NET and doesn't run Winforms or desktop WPF. Windows Store WPF is supported.
-
comment
Comment #10856630
No. Currently .NET Native (AOT) is used with WinStore apps - in fact every Win10 .NET application in the store and on your computer HAS to be .NET Native - but the plan is to make …
-
comment
Comment #10856572
No .NET CLI is a set of cross platform command line tools for making .NET applications.