Live data from Hacker News

Viewing profile — mutkach

mutkach

HN member
Joined
Thu, Jul 31, 2025, 6:18 AM UTC
HN karma
81
Public activity
50 items

About mutkach

https://torus.graphics

Recent public activity

  1. comment
    Comment #49225039

    That’s like (at least) third GPU-related project named Triton

  2. comment
    Comment #49152573

    On the other hand, it is not uncommon for the exiled old guard to form new companies, teams, products and realize their vision under new management. It is not like their knowledge …

  3. comment
    Comment #49018040

    Specific change to ToS: https://codeberg.org/Codeberg/org/commit/96fac426a32d1ba91ff... > 7. You must not share projects that mostly consist of code written by "generative AI"-tool…

  4. comment
    Comment #48991566

    True, and even selling token price may not be illustrative of what it actually costs them to provide the service. Tokens may be sold at a loss if majority of spenders are running a…

  5. comment
  6. comment
    Comment #48988813

    One thing that I tried was porting an old and obscure 32-bit VST plugin from PowerPC to modern architectures

  7. comment
    Comment #48979080

    Any recommendations for non-typescript-based coding TUI harnesses/agents other than Codex? Given that Codex is open source someone should've built an untethered client?

  8. comment
    Comment #47706571

    Please consider adding `cargo watch` - that would be a killer feature!

  9. comment
    Comment #47587083

    /* * Check if 1M context is disabled via environment variable. * Used by C4E admins to disable 1M context for HIPAA compliance. */ export function is1mContextDisabled(): boolean { …

  10. comment
    Comment #46691868

    Super-relatable. Now that I think about it, most of my advice starts something like "Here's what you're gonna do..." Wait, that itself sounds like a problem, but how do I fix it...…

  11. comment
    Comment #46331094

    You are correct, that was an uneducated guess on my part. I just glanced at the IR which was different for some attributes (nounwind vs mustprogress norecurse), but the resulting a…

  12. comment
    Comment #46328874

    Probably LLVM runs different sets of optimization passes for C and C++. Need to look at the IR, or assembly to know exactly what happens.

  13. comment
    Comment #46325707

    Sure, he is one of biggest advocates for it, and yet he was quite clear that it is not yet possible for him to do his actual research in Lean. Quoting one of the recent papers (202…

  14. comment
    Comment #46325580

    I share your fascination with proof assistants and formal verification, but the reality is that I am yet to see an actual mathematician working on frontier research who is excited …

  15. comment
    Comment #46325155

    Understanding IMO is "developing a correct mental model of a concept". Some heuristics of correctness: Feynman: "What I cannot build. I do not understand" Einstein: "If you can't e…

  16. comment
    Comment #46325093

    > more than 1,000,000 lines of Lean 4 code and concluding with a QED. Usually the point of the proof is not to figure out whether a particular statement is true (which may be of li…

  17. comment
    Comment #46271354

    Before Church there was Peano, and before Peano there was Grassmann > It is rather well-known, through Peano's own acknowledgement, that Peano […] made extensive use of Grassmann's…

  18. comment
    Comment #46217613

    What would you suggest as a reference problem (a benchmark of sorts) to try to play with formal methods for someone with just a bit of formal verification background but not in the…

  19. comment
    Comment #46217506

    What do you mean exactly by "error-tolerance"? Is it like, each node is wrapped into a result type, that you have to match against each time you visit it, even though you know for …

  20. comment
    Comment #46217051

    I certainly hope so. I wonder, what is the actual blocker right now? I'd assume that LLMs are still not very good with specifications and verifcation languages? Anyone tried Datalo…

  21. comment
    Comment #46216500

    LLVM makes it so much easier to build a compiler - it's not even funny. Whenever I use it, I feel like I'm just arranging some rocks on a top of a pyramid.

  22. comment
    Comment #46216457

    What language do you use parser combinators in, and what kind of grammar do you parse usually? Nom was terribly verbose and unergonomic even by Rust's standards. Haskell's Megapars…

  23. comment
    Comment #46167046

    Does it support sending and executing commands to the panes like tmux does? like this: tmux send-keys -t 0:1.1 "ls" Enter edit: well, yes, you can: zellij action write-chars ls zel…

  24. comment
    Comment #46165926

    That "itch" is exactly what I meant, lol! And I agree! I'd definitely give Rust a try. Playing around with types and traits until they click is genuinely addictive - it feels like …

  25. comment
    Comment #46165392

    More information is needed to give proper advice: - Do you like filling out the type annotations in Python (making sure linter check passes)? Do you like TYPES in general? - Do you…