Live data from Hacker News

Viewing profile — dubi_steinkek

dubi_steinkek

HN member
Joined
Tue, Apr 06, 2021, 7:25 PM UTC
HN karma
44
Public activity
12 items

About dubi_steinkek

No profile information was provided.

Recent public activity

  1. comment
    Comment #49154466

    Which stdlib collections and types should become `!Move`?

  2. comment
    Comment #49154454

    How so? This feel distinct from the "algebraic effects"-like features like constness, async, can-panic, can-unwind, etc., since this is a property of the types themselves rather th…

  3. story
  4. comment
    Comment #47834616

    Do you have links to these youtubers? Sounds interesting

  5. comment
    Comment #46602362

    That looks pretty good to me. Every `unsafe` function has clearly stated safety requirements, and every `unsafe` blocks justifies why the requirements are met.

  6. comment
    Comment #46602248

    mainly, but it also supports alternative codegen backends (cranelift, rustc_codegen_gcc)

  7. comment
    Comment #46274183

    Why is this a perf footgun? As someone who doesn't write a lot of c++, I don't see anything intuitively wrong. Is it that iterating over map yields something other than `std::pair`…

  8. comment
    Comment #46190940

    Maybe they can with postinstall scripts, but they usually don't. For the most part, installing packaged software simply extracts an archive to the filesystem, and you can uninstall…

  9. comment
    Comment #46190898

    > there is no difference as jj is only a frontend to git. That's not really true in this case, as the worktree feature from jujutsu is not implemented on top of git worktrees.

  10. comment
    Comment #44646818

    I don't think that's a fair characterization. It's more that there isn't really a big difference between the workflow of # you're on staging area @ commit A # make some untracked c…

  11. comment
    Comment #41344929

    It's possible but I would prefer to just pass &str at that point, leading to less monomorphizations and a simpler API

  12. comment
    Comment #38798661

    This seems to be a somewhat common occurrence. When I was first learning programming with python I wanted multiple balls in a pong-like game, so after some googling I ended up writ…