Live data from Hacker News

Viewing profile — Lvl999Noob

Lvl999Noob

HN member
Joined
Sun, Aug 25, 2019, 10:51 PM UTC
HN karma
323
Public activity
178 items

About Lvl999Noob

No profile information was provided.

Recent public activity

  1. comment
    Comment #49198446

    I haven't read any of their previous articles but I had to jump out and go through the comments here just because of how LLM-ist it felt. Right in first paragraph or two, it starte…

  2. comment
    Comment #48815150

    Isn't this a problematic idea? If you flush down herbicide without checking the results, you would risk breeding herbicide resistance in the weeds.

  3. comment
    Comment #48734901

    How would you use zod as a dev-only dependency? The whole point there is to be a parser. If you remove it from runtime then you are not parsing the production payloads, which is th…

  4. comment
    Comment #48501401

    Isn't USA famous for letting parents take out credit cards on their newborns and pushing them into debt even before they learn to walk? I recall seeing at least a few snippets of m…

  5. comment
    Comment #48474121

    > if you catch my drift Not OP but I don't. What do you mean? How do you make the kei truck an object they aren't in the business of taxing when they are, in fact, in that very bus…

  6. comment
    Comment #48091257

    I agree. I prefer Optionals over Nulls in any case. This was just a thought of what if Go went all the way instead of just halfway. In my ideal language, you would have explicit as…

  7. comment
    Comment #48073711

    Well, what happens when you write through an invalid pointer? The runtime can swallow the write or crash the program or allocate new storage and replace the pointer. Depends on the…

  8. comment
    Comment #48065686

    What if Go went all the way? Referencing a zero pointer (nil) gives you the zero value of the pointed to type. If you try to access a zero map, it tries to deference the zero point…

  9. comment
    Comment #48058792

    > Pix is already 100% surveilled And Visa and MasterCard aren't surveiled? Isn't one of their selling points that they surveil every transaction and automatically block anything su…

  10. comment
    Comment #48008883

    I thought newtonian gravity was already proven to be inaccurate with Einstein's Special Relativity (or General Relativity?) giving better results on cosmic scales (basically analog…

  11. comment
    Comment #47998841

    Aren't there companies that still use C89 for their production systems? I don't know any in particular but I have read comments here on HN implying that. Just do the same for Rust.…

  12. comment
    Comment #47443542

    Wouldn't you face the same problem as Dotnet on Windows? AFAIK, dotnet based frameworks and apps suffered from huge performance issues. It might have improved in recent times, I am…

  13. comment
    Comment #47198870

    I noticed a major problem. If I just keep writing in a single paragraph, the lines don't disappear. I was expecting it to automatically start fading the text once it reached 3-4 li…

  14. comment
    Comment #47032523

    I am not too into windows dev but I am currently using msvc at work. We are told to import a config file into the installer and it automatically selects all of the components any o…

  15. comment
    Comment #46748413

    Are you saying you want foo and bar to completely overlap? And baz and foo / bar to partially overlap? And have lots of unused bits in there too?

  16. comment
    Comment #46629729

    My internet providers (both home wifi and cellular) do this. The problem with unlimited slow speed is that it's too slow. I am sometimes unable to open the carrier's own app and pa…

  17. comment
    Comment #46584888

    The dock and monitors aren't mine actually. I got them from work. The work laptop runs windows 11 so the hardware is only tested for windows. I will buy my own stuff when I have to…

  18. comment
    Comment #46568771

    I recently switched to linux from windows. The only reason I was sticking with windows was because hoyoverse refuses to support linux. I finally decided I need some break from them…

  19. comment
    Comment #46493603

    Yeah. Certainly felt like that. On the other hand, the content does seem good. It definitely wasn't slop, even if I can't judge how useful it really was (in terms of giving a solut…

  20. comment
    Comment #46452559

    You don't. Assertions are assumptions. You don't explicitly write recovery paths for individual assumptions being wrong. Even if you wanted to, you probably wouldn't have a sensibl…

  21. comment
    Comment #46425328

    My 2c. The risk of losing one (or both) earbud is a real one. My ears don't tend to keep snug grip on the earbuds so they tend to get loose after I walk a little. With earbuds, thi…

  22. comment
    Comment #46418418

    Since the human eye is most sensitive to green, it will find errors in the green channel much easier than the others. This is why you need _more_ green data.

  23. comment
    Comment #46378880

    You are building everything in CI from scratch so theoretically, it should be completely possible to not need to scan lockfiles and get all the data from their respective sources (…

  24. comment
    Comment #46378830

    Couldn't the compiler optimise this still? Make two versions of the function, one with constant folding and one without. Then at runtime, check the value of the parameter and call …

  25. comment
    Comment #46372653

    Personally, I would prefer that the package managers keep their own lockfiles with all their metadata. A CI process (using the package managers itself) can create the SBOM for ever…