Live data from Hacker News

Viewing profile — zk4x

zk4x

HN member
Joined
Fri, Nov 22, 2024, 1:13 PM UTC
HN karma
2
Public activity
6 items

About zk4x

No profile information was provided.

Recent public activity

  1. comment
    Comment #44627156

    Indices are the way to go for a whole range of programs - compilers (IR instructions), GUI (widgets), web browser (UI elements), databases, games (ECS), simulations, etc. It is how…

  2. comment
    Comment #43607838

    This is very nice article, objectively lists possible pitfalls. It's however not quite that simple. I am in favor of removing as, but then try_from needs to work with more types, f…

  3. comment
    Comment #42418848

    What came before was regression. Which is to this day no 1 method if we want something interpretable, especially if we know which functions our variables follow. And self attention…

  4. comment
    Comment #42214215

    Perhaps I should have been more clear. The point is you would not implement traits. You would just implement functions. You would not implemet traits, you would just write function…

  5. comment
    Comment #42213910

    If there are two modules module_a and module_b, and each defines a function called foo, how does the compiler decide which foo should be used? It just checks whether you imported m…

  6. comment
    Comment #42213785

    This. Traits and macros are two real problems with rust. Orphan rule is one, but also const, async and unnamable types (mostly closures). These barely work with traits or do not wo…