HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dubi_steinkek

39 karmajoined vor 5 Jahren

Submissions

crates.io: Development Update

blog.rust-lang.org
5 points·by dubi_steinkek·vor 18 Stunden·0 comments

comments

dubi_steinkek
·vor 3 Monaten·discuss
Do you have links to these youtubers? Sounds interesting
dubi_steinkek
·vor 6 Monaten·discuss
That looks pretty good to me. Every `unsafe` function has clearly stated safety requirements, and every `unsafe` blocks justifies why the requirements are met.
dubi_steinkek
·vor 6 Monaten·discuss
mainly, but it also supports alternative codegen backends (cranelift, rustc_codegen_gcc)
dubi_steinkek
·vor 7 Monaten·discuss
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`, but which can be converted to `std::pair` (with nontrivial cost) and that result is bound by reference?
dubi_steinkek
·vor 7 Monaten·discuss
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 using the standard method (apt remove, uv tool remove, ...).

Scripts are way less standardized. In this case it's not an argument about security, but about convenience and not messing up your system.
dubi_steinkek
·vor 7 Monaten·discuss
> 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.
dubi_steinkek
·vor 12 Monaten·discuss
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 changes and console logs you don't wanna commit
    git add -p && git commit # select only what you want
vs

    # you're on
    @ empty commit 
    | commit A
    # make some local changes (which are tracked in @)
    jj commit -i # select only what you want
You're still "in charge what gets tracked" if you treat the last @ commit as your local playground, exactly the same as the staging area. The only difference is that you can use exactly the same tools to manipulate your "staging area" as other commits. The only difference being that you can manipulate your staging area with the same tools as any other commit.