Viewing profile — dubi_steinkek
dubi_steinkek
HN member- Joined
- Tue, Apr 06, 2021, 7:25 PM UTC
- HN karma
- 44
- Public activity
- 12 items
- HN profile
- View on Hacker News ↗
About dubi_steinkek
No profile information was provided.
Recent public activity
-
comment
Comment #49154466
Which stdlib collections and types should become `!Move`?
-
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…
- story
-
comment
Comment #47834616
Do you have links to these youtubers? Sounds interesting
-
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.
-
comment
Comment #46602248
mainly, but it also supports alternative codegen backends (cranelift, rustc_codegen_gcc)
-
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`…
-
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…
-
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.
-
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…
-
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
-
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…