gerard
Console Doesn't Clear and Provides nested outputs
Sounds like https://github.com/dotnet/runtime/issues/83568
The second comments gives more info why Terminal behaves this way
102 replies
remove or minify variable names out from compiled exe
Because variables outside the lambda are captured into a class, which makes a field, which gets stored:
https://sharplab.io/#v2:EYLgxg9gTgpgtADwGwBYA+ABATARgLABQhAbgIZQAEAdgK4C2wMlAvBTgNyGEY5YUAOUAJZUALgDl6jFhQAUASgrMAfBQDehCloo8AnLNoMm8zgQC+pwoJESpTBeyA==
200 replies
app.UseHealthChecks("/health"); works locally, does not work behind iis deployment.
I think it's only available from localhost (127.0.0.1 or ::1). You can allow more hosts tho:
https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-8.0#require-host
6 replies
Problem with deserializing JSON file.
If you really, really want
Dictionary<List<long>, List<string>>
, you can make a JsonConverter for it: https://paste.mod.gg/xpdtuesgzdjf/07 replies
✅ can't translate linq query
I've been playing around. I've created an extension: https://paste.mod.gg/gdnzgfzdlwea/0
Here you can do the following:
But yeah, of course a new table would be better.
46 replies