Viewing profile — S04dKHzrKT
S04dKHzrKT
HN member- Joined
- Mon, Jan 27, 2020, 7:14 PM UTC
- HN karma
- 204
- Public activity
- 56 items
- HN profile
- View on Hacker News ↗
About S04dKHzrKT
No profile information was provided.
Recent public activity
-
comment
Comment #48639865
If anyone responsible for the site's CSS happens to see this, the fixed height in pixels of #header causes the nav bar links to be partially obscured making them more difficult to …
-
comment
Comment #47595543
This is where attestation/sigstore comes into play. Github has a first-party action for it and I wish more projects would use it. Regarding javascript specifically, I believe npm h…
-
comment
Comment #47295805
Just an FYI, Stride isn't related to MonoGame or XNA. Stride was originally Paradox (and then Xenko) made by Silicon Studio. They eventually open sourced it and let the community t…
-
comment
Comment #47222871
Stride runs on the latest version of dotnet and c#. I don't have enough experience with it to know its pros and cons though. https://www.stride3d.net/
-
comment
Comment #45649575
Depending on your usage, you may not need a separate app. Jetbrains[0], Visual Studio[1] and VSCode[2] have support for http files. [0]: https://www.jetbrains.com/help/idea/http-cl…
-
comment
Comment #45215892
For anyone wanting to follow C#'s progress on sum types and exhaustive pattern matching, you can follow/participate in the proposal[1]. [1]: https://github.com/dotnet/csharplang/is…
-
comment
Comment #44770230
Your second paragraph sounds like you're describing Avalonia. Avalonia has AOT, compile-time binding errors and cross-platform support. Maybe there have been some updates since you…
-
comment
Comment #44717865
In the dotnet world, SQLx is more analogous to F# type providers like FSharp.Data.SqlClient , SQLProvider or Rezoom.SQL.
-
comment
Comment #44665913
There are very few F# specific features used in the book. I imagine you could follow along pretty easily with any other functional language. You can easily use F# for the book and …
-
comment
Comment #44662804
> ^ Has C# projects on github. Don't think that statement is true. Why?
-
comment
Comment #44587296
Make note of the privacy policy[1]. Some users may not like the data they collect. > Information Collected from Children: As detailed in Section 3.C, we collect voice audio during …
-
comment
Comment #44539872
In a similar vein, I had Western Digital Raptors striped in my gaming PC in the mid 2000s. I remember just how amazed I was after moving to SSDs.
-
comment
Comment #43110822
Real Programmers use ed. https://xkcd.com/378/
-
comment
Comment #42895525
Here's the language proposal for those that are interested. https://github.com/dotnet/csharplang/issues/8928
-
comment
Comment #42668538
PBS Spacetime has a good video on how Earth moves through the universe based on multiple reference frames for anyone interested. https://www.youtube.com/watch?v=1lPJ5SX5p08
-
comment
Comment #42141929
When you have a site with a fixed, tiny amount of users, I'd opt for HTTP basic auth (via HTTPS). Whether you're using nginx, Traefik, Caddy, etc..., it's very easy to setup. If yo…
-
comment
Comment #41966887
That's funny. I thought of a different XKCD. Deadlifting for a brute force-attack. https://xkcd.com/37/
-
comment
Comment #41851678
> "do you want chemicals in your water"? This argument, in any context, always reminds me of the fluoride episode of Parks and Rec. https://www.youtube.com/watch?v=8c0JrJdJrBA
-
comment
Comment #41745612
I like these kinds of visualizations for big things. Reminds me of "1 pixel wealth." https://mkorostoff.github.io/1-pixel-wealth/
-
comment
Comment #41745572
Lawrence Krauss has given a talk that mentions something similar. He says that we live in a good time because we can still see "everything" around us. At some point in the far futu…
-
comment
Comment #41285030
Jetbrains' .DotSettings file is a specific example. It contains things like project specific dictionaries for the IDE's spell checker.
-
comment
Comment #41233119
hunter2
-
comment
Comment #41184341
I've found the same to be true as well.
-
comment
Comment #41184295
Not quite closed. The compiler generated protected constructor can still be used. public record UhOh : Maybe { public UhOh() : base(new Maybe .Nothing()) { } } Maybe m = new UhOh (…
-
comment
Comment #41184138
Do note that record types aren't closed even with a private constructor. The compiler will generate a protected constructor for copy operations which can then be inherited from. To…