Live data from Hacker News

Viewing profile — michalsustr

michalsustr

HN member
Joined
Tue, Jan 18, 2022, 9:54 PM UTC
HN karma
142
Public activity
102 items

About michalsustr

No profile information was provided.

Recent public activity

  1. comment
    Comment #49215363

    Very cool! Also, huh interesting. I’ve used rdtsc to measure cycle diffs but had no idea its execution takes that long. Is that common across architectures?

  2. comment
    Comment #49193925

    Hmm so why did boxed() do type erasure in the first place?

  3. comment
    Comment #48970911

    I talked with Hochreiter about 1.5y ago they should go for it and properly scale xLSTM to LLMs, not just playing around with few B params for experiments. They felt like they are t…

  4. story
  5. comment
    Comment #48505566

    Very interesting. What do you want to do about async?

  6. comment
    Comment #48418036

    Congrats on the launch, this must have been an insane amount of work! I noticed the headers had 2024 in them, so indeed quite some time put in. It seems the main selling point of m…

  7. comment
    Comment #48286063

    Fantastic presentation! Thank you for sharing.

  8. comment
    Comment #48191520

    Given general software quality of the js ecosystem, the proliferation of supply chain attacks was just matter of time. I’m curious how other ecosystems will hold (eg Rust)

  9. comment
    Comment #48166534

    What language are you building this in? I’m interested but trying to stay away from js world for security reasons.

  10. comment
    Comment #48033277

    Interesting. So one way to interpret current situation is that Github is "trapped" by its open source offering. This will likely have implications soon on what they do or the direc…

  11. comment
    Comment #48024400

    Why don’t they just raise GitHub actions prices? Supply and demand, that would sort itself

  12. comment
    Comment #47951619

    I recently saw a submission here that does that, by essentially implementing GC in Rust. It is not beginner material though. https://kyju.org/blog/tokioconf-2026/ Edit: also the si…

  13. comment
    Comment #47499962

    Next step would be optimize for performance so it’s not slow. LLMs in Rust like to use cloning a lot , which will make it super slow.

  14. comment
    Comment #47431072

    Very interesting! Im curious, how does this work, it binary patches glibc allocator? AFAIK custom allocators are only in nightly and require generics in the form Vec

  15. comment
    Comment #47349259

    Mine too! Rust is my favourite language right now. The complications begin with async. Outside of async it’s a beautiful world. With async, you tend to get locked down on library e…

  16. comment
    Comment #47306781

    It would be great to include non-io-uring bench numbers as baselines.

  17. comment
    Comment #47267273

    This would be great if it compiled to wasm! Rust has great support for it. And you’d get native architecture for free too!

  18. comment
    Comment #47157297

    Very cool. How about using caps lock for switching modes? Or vim-style?

  19. comment
    Comment #47153338

    We might be interested in the technology (not as a VC), if it shows meaningful improvement (>2x) over what we currently do. If you could show how it compares with a simple replicab…

  20. comment
    Comment #47143547

    Interesting. How does your benchmark look like if you compare with monoio?

  21. comment
    Comment #47086596

    Btw this blog series is a fantastic read: https://en.ihcblog.com/rust-runtime-design-1/

  22. comment
    Comment #47086572

    Hi, nice motivation! I’ve built async runtime driven by clocks on top of monoio. You can drive each thread at different speed, to simulate a distributed system faster than real tim…

  23. comment
    Comment #47058807

    Very interesting. What is the runtime model, based on the "async trilema" https://without.boats/blog/the-scoped-task-trilemma/ ? I assume tokio-like, i.e. work-stealing?

  24. comment
    Comment #46959889

    Very cool! I’m exploring adding DICOM support to https://minfx.ai project. The idea is to better support machine learning in medical space and make DICOM viewing in web assembly. N…

  25. comment
    Comment #46910519

    I made bunch of linters/formatters for Rust specifically that try to make everything "look the same" in the monorepo. Especially as it is being generated by AI. It makes it easier …