Viewing profile — useerup
useerup
HN member- Joined
- Wed, Oct 29, 2014, 5:58 AM UTC
- HN karma
- 710
- Public activity
- 199 items
- HN profile
- View on Hacker News ↗
About useerup
No profile information was provided.
Recent public activity
-
comment
Comment #41192052
Death is a moral responsibility. You owe your existence to evolution. Evolution would not work if we had to compete for resources with all of the organisms that came before us when…
-
comment
Comment #41107980
Microsoft has ported CLR (.NET Core) to Webassembly and it runs in the browser. You can indeed run CLR code in the browser. That is how Blazor works
-
comment
Comment #40874412
So much was so right about PowerShell. But it failed to attract a wider audience, and in their quest to woo Linux devs Microsoft has been undermining PowerShell lately. Knowing wha…
-
comment
Comment #39993426
The first .NET Blazor "webassembly" was the .NET runtime ported to Webassembly, but where developer code would actually be the same type of IL (Microsoft's Intermediate Labguage) a…
-
comment
Comment #39993114
> Worse, it won't ever work if you intended it to be a JavaScript replacement because it cannot integrate into the interaction of the surrounding page, because it is a sandbox with…
-
comment
Comment #38858356
I believe because the C# version has been written using rectangular arrays. This requires every array access to use a multiplication. The Java version uses array-of-arrays and hois…
-
comment
Comment #38704124
I use grocery store apps where I can scan the items with my phone as I put them in my bag. Checkout is then only swipe to pay. There are occasional random inspections, otherwise I …
-
comment
Comment #38666057
Here in Denmark we also have a driver's license app. The app has a feature through which the user can identify themself to another party using the same app on their phone. When use…
-
comment
Comment #38362041
Blazor - until .NET 8 - came in Blazor Server and Blazoe Webassembly variants. Blazor Server renders the DOM at the server and sends it to the browser. The server also holds on to …
-
comment
Comment #37856209
A cube of water 1cm * 1cm * 1cm = 1cm^3 has a mass of 1 gram. A cube of water 1m * 1m * 1m is 1000 liters and has a mass of 1000 kg The SI units are supposed to be related like tha…
-
comment
Comment #36506655
This comment make me question if you really have any experience with LINQ. If you had, you would not make a comment where you seem to think that LINQ is used only for data access. …
-
comment
Comment #36506570
> Unfortunately basic mistakes can result in so many of those N+1 type queries if you're not careful. It can also result in reading entire table(s), possibly inside those nested N+…
-
comment
Comment #36506271
I dont think EF ever did that. However, if you used automatic lazy loading and you somehow inadvertently referenced the collection, then yes, it would lazy load the related entitie…
-
comment
Comment #36506047
> Sooo it’s dapper with string interpolation override to make queries parameterized so you don’t need to manually put the parameters on as 2nd arguments? Pretty much. C# does some …
-
comment
Comment #36353294
Blazor computes the DOM deltas in webassembly/.NET code in the browser and then sends those deltas to the translation layer which then performs the changes to the DOM. This process…
-
comment
Comment #35555782
Actually, many western number systems have traces from base 20. Just consider how you have names for numbers up until 20. In Danish, the way we name numbers are heavily inspired by…
-
comment
Comment #35371397
> Any other suggestions? Futhark: https://futhark-lang.org/
-
comment
Comment #35249392
> Microsoft also seems to be prioritizing Typescript and Node internally with its recent moves. You may want to look at Blazor Webassembly ( https://dotnet.microsoft.com/en-us/apps…
-
comment
Comment #32847814
Summary is a bit misleading. This is about the fourth vaccine shot (2nd booster if you will). Vaccines are still recommended (and free) in Denmark if you are not vaccinated yet. Th…
-
comment
Comment #32487644
> Blazor Server requires a peristent websocket connection to each client to execute the C# code you write on the client and maintain state Blazor Server retains the circuit for up …
-
comment
Comment #31683583
> Does anyone else get the feeling that we (as a field) are missing something basic about concurrency? Like there's a really elegant solution just around the corner, that has the l…
-
comment
Comment #30664417
The "Sdk.Web thing" is the way the project is built. As I and several people in this thread has pointed out to you, the application the resulting application is not a "web" applica…
-
comment
Comment #30662747
I did. It works. The above code lines are cut directly from a test project that I made. Several people have pointed out how a web app in .NET 5/6 is really a console app which only…
-
comment
Comment #30659662
1. Create a new web project (it is actually a console app) 2. In program.cs add the following lines at the top: Console.Write("Port number:"); var port = int.Parse(Console.ReadLine…
-
comment
Comment #30573265
Yes. Almost all DBMSs has a way to delimit table/column names (for instance when a name contains spaces or special characters. However, proper DBMSs expose parameters as 1st class …