Live data from Hacker News

Viewing profile — en4bz

en4bz

HN member
Joined
Fri, Oct 11, 2013, 3:43 AM UTC
HN karma
627
Public activity
224 items

About en4bz

No profile information was provided.

Recent public activity

  1. comment
    Comment #43552691

    OpenGL and Vulkan are provided by the GPU vendor you can't statically link them.

  2. comment
    Comment #35033612

    Whiteboard coding almost always devolves into leetcode which also requires at home study. You're going to be spending evenings and weekends coding something in either case.

  3. comment
    Comment #34900341

    Haven't most plans moved to PPO since Obamacare. They usually allow you to just skip primary care nowadays.

  4. comment
    Comment #34890137

    Flatbuffers, Cap'n Proto, or SBE over RDMA.

  5. comment
    Comment #34059824

    I'm assuming you're referring to the golang model of statically linking everything. That's not really doable when many popular libraries are (L)GPL'd like glibc and libstdc++. It a…

  6. comment
    Comment #34059428

    > bazel has provisions for patching stuff from http_archive if you supply a patch That's a hack.

  7. comment
    Comment #34059309

    It's literally the default. How can the default be an anti-pattern. I doubt you're using C/C++ because you don't seem to understand the issue.

  8. comment
    Comment #34059221

    You're assuming you have control over all the deps and can set `linkstatic` on them.

  9. comment
    Comment #34059135

    qux is now forced to be static. Consumers should be able to choose whatever they want. I don't know what end users want to do.

  10. comment
    Comment #34058186

    The logic is backwards though. I may have multiple consumers of a library some of which may want static some of which may want dynamic. You need to create/import new targets to do …

  11. comment
    Comment #34058115

    Non-Hermetic is the default for C/C++. And if you plan on using system provided libraries to support multi OSes then you can't use it.

  12. comment
    Comment #34057761

    None, bazel's caching implementation is broken because they don't even know or specify what constituents a build hash/key. See this issue from 2018 that's still open [1]. [1] https…

  13. comment
    Comment #34057352

    No, they are extremely broken. You can only choose: - Link everything static. - Link everything dynamic. - Link user libs as static and system libs as dynamic. There is no easy way…

  14. comment
    Comment #33994683

    CUDA Driver API or Runtime API remoting?

  15. comment
    Comment #33994333

    That's the biggest problem with this model. With inference it's better to just use a dedicated model server. For training it's better to deploy on a massive dedicated machine. The …

  16. comment
    Comment #33994301

    I doubt this does multi-server. All the GPUs probably have to be on the same machine.

  17. comment
    Comment #33994264

    Infiniband avoids the network stack. Has ~2us latency these days over LAN.

  18. comment
    Comment #33883606

    bazel is trash.

  19. comment
    Comment #33397602

    100% agree with this. There's nothing in the new standards past 17 that actually helps me in real life day to day work. Most of the new features are solely for code-golfers (see ra…

  20. comment
    Comment #33253090

    It's mostly run by code-golfers which is much worse.

  21. comment
    Comment #31819490

    All the jobs you listed have professional associations that require passing exams. If you required the same level of testing and exams for devs I doubt half the software industry w…

  22. comment
    Comment #30791634

    Kids theses days hate using technology that's older than themselves? Kerberos is amazing and it make me sad to see all these people reinventing stuff that was solved 30 years ago. …

  23. comment
    Comment #29103651

    You can use rseq on linux to avoid this.

  24. comment
    Comment #28982765

    If you've ever tried reading the source for glibc or libstdc++ you know this is terrible advice.

  25. comment
    Comment #28317258

    So `dlmopen`?