Live data from Hacker News

Viewing profile — hazz99

hazz99

HN member
Joined
Fri, May 04, 2018, 8:40 AM UTC
HN karma
924
Public activity
401 items

About hazz99

No profile information was provided.

Recent public activity

  1. comment
    Comment #48868599

    Bought the app, this is great. Can I make a feature request? I’d love for it to include a sequence of “levels” or existing equations to try and solve in order of increasing difficu…

  2. comment
    Comment #47538351

    Plus modern interconnects like CXL are also layers on top of PCIe, and USB4 supports PCIe tunnelling. PCIe is a big collection of specifications, the physical/link/transaction laye…

  3. comment
    Comment #46032386

    I’m sure this work is very impressive, but these QPS numbers don’t seem particularly high to me, at least compared to existing horizontally scalable service patterns. Why is it har…

  4. comment
    Comment #38988402

    Unfortunately I don’t have any recommendations to give, my experience starts and stops at application development. Though I would love to spend some time in a datacenter! Potential…

  5. comment
    Comment #38937608

    Once you're past the fundamentals, if find yourself interested in high-performance networking, I recommend looking into userspace networking and NIC device drivers. The Intel 82599…

  6. comment
    Comment #37072619

    Do you have any career advice for someone deeply interested in breaking into high performance GPU programming? I find resources like these, and projects like OpenAIs Triton compile…

  7. comment
    Comment #36643403

    I disagree, “req/res body cookies that’s it” is not the underlying system. It’s an abstraction over the TCP/IP and HTTP stack. What happens when you need to disable nagles, avoid c…

  8. comment
    Comment #34230506

    Is there a way for me to subscribe to updates on this? I’d love that!

  9. comment
    Comment #33530610

    Can’t you just swipe down from the top of the screen and press the Bluetooth icon, or am I missing something?

  10. comment
    Comment #33213965

    You should share the design principles!

  11. comment
    Comment #33147424

    What translation is this? I love the writing!

  12. comment
    Comment #32862368

    They sell an API product, of which documentation is an absolutely core, user-facing part of their product. It doesn’t make sense not to own something that differentiates your produ…

  13. comment
    Comment #32539668

    Is that not accurate? There’s only so many hours in the day, and I have to split them between competing priorities. If I don’t have time for something, I don’t have the remaining h…

  14. comment
    Comment #32327777

    Having your caching set up I correctly is verrryyy easy to do. There’s lots of things you can miss, and don’t realise until a whole lot of traffic hits you

  15. comment
    Comment #32264364

    I’m hoping by more projects adopting Bazel, we get more powerful libraries, and it becomes trivial to use.

  16. comment
    Comment #32261470

    I’m using Bazel to build my rust project (Using the rules_rust rules) and it’a become quite a pain to use in concert with docker. This is not a complaint about Bazel specifically, …

  17. comment
    Comment #32078449

    Assumptions about the users, not assumptions made by the users.

  18. comment
    Comment #31653347

    I tailor all my resumes to the companies I want to work at. Each have different role descriptions and things they value. If I want to commit a few hours of my life working there, I…

  19. comment
    Comment #31640252

    Off-topic, but what streams! Would love to follow along with some interesting Rust ones.

  20. comment
    Comment #31629304

    They’re not doing anything wrong, but working with generics, traits and async code is very much against the grain of the 2018/2021 editions of Rust. The async story hasn’t finished…

  21. comment
    Comment #31605819

    I don’t think it’s true that any given “basic” design pattern should should necessarily be simple in every language. Certain things are short and elegant in Rust. Certain things ar…

  22. comment
    Comment #31545264

    I’d assume 2.5M refers to the number of containers, not physical machines. And that since containers are virtualised and largely a developer convenience, there’s not a big reason t…

  23. comment
    Comment #31468024

    I don’t believe it’s particularly new. Microsoft has thoroughly embraced this in the Teams API, so I wouldn’t expect it to go away soon.

  24. comment
    Comment #30647678

    How does this apply to not needing queues? I suppose you can rely on your language runtime to juggle the various jobs and concurrent threads (analogous to workers), but then you lo…

  25. comment
    Comment #30625858

    Aren’t queues simply a requirement to do asynchronous processing? And MQs are a way to do it while keeping your application stateless, and with features to make it easier to recove…