Live data from Hacker News

Viewing profile — S04dKHzrKT

S04dKHzrKT

HN member
Joined
Mon, Jan 27, 2020, 7:14 PM UTC
HN karma
204
Public activity
56 items

About S04dKHzrKT

No profile information was provided.

Recent public activity

  1. 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 …

  2. 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…

  3. 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…

  4. 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/

  5. 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…

  6. 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…

  7. 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…

  8. comment
    Comment #44717865

    In the dotnet world, SQLx is more analogous to F# type providers like FSharp.Data.SqlClient , SQLProvider or Rezoom.SQL.

  9. 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 …

  10. comment
    Comment #44662804

    > ^ Has C# projects on github. Don't think that statement is true. Why?

  11. 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 …

  12. 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.

  13. comment
    Comment #43110822

    Real Programmers use ed. https://xkcd.com/378/

  14. comment
    Comment #42895525

    Here's the language proposal for those that are interested. https://github.com/dotnet/csharplang/issues/8928

  15. 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

  16. 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…

  17. comment
    Comment #41966887

    That's funny. I thought of a different XKCD. Deadlifting for a brute force-attack. https://xkcd.com/37/

  18. 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

  19. 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/

  20. 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…

  21. comment
    Comment #41285030

    Jetbrains' .DotSettings file is a specific example. It contains things like project specific dictionaries for the IDE's spell checker.

  22. comment
  23. comment
    Comment #41184341

    I've found the same to be true as well.

  24. 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 (…

  25. 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…