Live data from Hacker News

Viewing profile — modulared

modulared

HN member
Joined
Thu, May 02, 2024, 12:33 PM UTC
HN karma
7
Public activity
13 items

About modulared

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #48413402

    Looks like it was introduced in 1.81.0: https://blog.rust-lang.org/2024/09/05/Rust-1.81.0/#new-sort-...

  3. comment
  4. comment
  5. story
  6. comment
    Comment #47400618

    > since the compiler cannot inline across await. Is this stated somewhere? A simple search online yields nothing, and just testing it out on godbolt the compiler does inline at lea…

  7. comment
    Comment #47205633

    Not having a required input, say when you try to reproduce a previous build of a package, is a separate issue to an input silently changing when you go to rebuild it. No build syst…

  8. comment
    Comment #45785763

    That doesn't really make sense since memory safety is a property of a language. You can have code that is unsafe (read unsound), but that is a separate issue. For a language to be …

  9. comment
    Comment #45052904

    > I believe that languages with typestate can cause types to change as a result of function calls Do you have any specific languages?

  10. comment
    Comment #44661122

    > I could disable autoadding files, but life will be worse that way. ``` [snapshot] auto-track = 'none()' ``` This is what I do, and I don't think it is worse. I prefer not having …

  11. comment
    Comment #40248664

    > Why not just go talk the other people you'd really prefer to talk to? sorry, I didn't mean to be so argumentative or negative. (The "You'll have to ask the Rust community. Rust l…

  12. comment
    Comment #40243602

    > To which language? I mean more in the sense of "where did you get this definition from." > The difference there is in the types the enums are applied to. In one case, a basic int…

  13. comment
    Comment #40235773

    > Enums produce values. Tag-only unions 'produce' types (without values). Source? Is this something that is widely accepted, or just how you think enums should be defined. My under…