Live data from Hacker News

Viewing profile — nikeee

nikeee

HN member
Joined
Tue, May 05, 2015, 2:25 AM UTC
HN karma
1,587
Public activity
314 items

About nikeee

No profile information was provided.

Recent public activity

  1. comment
    Comment #49025864

    I don't like this: String body = ... REST response body, which is a JSON document ... ; JsonValue json = Json.parse(body); json.get("properties").get("periods").asList().stream() .…

  2. comment
    Comment #48225923

    I suspect that, too. But to me, it signals the exact opposite.

  3. comment
    Comment #48224607

    In that case I still want to see exactly this prompt. Then I know that the person didn't even think about my question thoug I asked _them_ for their opinion and I could have asked …

  4. comment
    Comment #48221973

    When I'm encountering some WoT like that, I'd like to have a button like "view source", but for "view prompt". Most ai generated messages or docs are unnecessarily verbose and just…

  5. comment
    Comment #48017048

    Zig is a moving target that has breaking changes in every release (which is fine as they are sub-1.0). But that means that AI tools have been trained on outdated syntax/etc. Zig is…

  6. comment
    Comment #47759199

    I am building an S3 client [1] where I have a test matrix that tests against common S3 implementations, including RustFS. That test matrix uncovered that post policies were only ch…

  7. comment
    Comment #47658579

    What matters for LLMs is what matters for humans, which usually means DX. Most Microservice setups are extremely hard to debug across service boundaries, so I think in the future, …

  8. comment
    Comment #47344042

    It is called Duration.

  9. comment
    Comment #47339552

    > the only viable use cases were compute-heavy workloads like codecs and crypto, I tried using it for crypto, but WASM does not have instructions for crypto. So it basically falls …

  10. comment
    Comment #47293199

    That could probably be solved by opting in to the permission model of Node. But that won't work for everybody, especially in legacy applications. Having trusted dependencies at lea…

  11. comment
    Comment #47293180

    Some tools also install pre-commit hooks. I don't like this practice, but I get why people are using it.

  12. comment
    Comment #47292358

    Bun added `trustedDependencies` [1] to package.json and only executes postInstall scripts coming from these dependencies. I think this is something that should be supported across …

  13. comment
    Comment #47174268

    So if i happen to know the numbers of other file descriptors of the process (listed in /proc), i can redirect to other files opened in the current process? 2>&1234? Or is it restri…

  14. comment
    Comment #47089533

    I use git-trim for that: https://github.com/foriequal0/git-trim Readme also explains why it's better than a bash-oneliner in some cases.

  15. comment
    Comment #47080145

    Or you don't use the defualt case and rely on definite assignment analysis or checks for returns in every code path. I find the never type in TS actually being a proper bottom type…

  16. comment
    Comment #46693313

    There was dudle [1] developed and hosted by a German university. Seems unmaintained, but there is an independent project called BitPoll [2]. [1]: https://github.com/kellerben/dudle…

  17. comment
    Comment #46674970

    I hope that when all online content is entirely AI generated, humanity will put their phone aside and re-discover reality because we realize that the social networks have become en…

  18. comment
    Comment #46641172

    What if the software is developed and potentially backdoored in the US and deployed by the EU team in the sovereign region? Or did they rewrite the entire AWS stack?

  19. comment
    Comment #46424555

    Keep in mind that a train in Germany counts as one-time if it is less than 6 minutes late. In Switzerland, it's 3 minutes. Also in Germany, a train that did not even arrive does no…

  20. comment
    Comment #46295013

    Given that I can dump hundreds of TBs into the private container registry without paying anything I'm pretty surprised that they now charge for what is basically providing log stre…

  21. comment
  22. comment
    Comment #46199667

    MS Office only has icons for the things that matter most. I think MS even had a UI guideline similar to the one that is cited from apple in TFA, but I cannot find it. The author do…

  23. comment
    Comment #46141461

    GCC also has an extension to support references to other parameters of the function: #include void foo(size_t n, int b[static n]); https://godbolt.org/z/c4o7hGaG1 It is not limited…

  24. comment
    Comment #46138379

    I maintain an S3 client that has a test matrix for the commonly used S3 implementations. RustFS regularly breaks it. Last time it did I removed it from the matrix because deleteObj…

  25. comment
    Comment #46138332

    Didn't contribute to MinIO, but if they accepted external contributions without making them sign a CLA, they cannot change the license without asking every external contributor for…