HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nitsky

no profile record

comments

nitsky
·vor 2 Monaten·discuss
True, but it makes the specific collision the post observed completely impossible.
nitsky
·vor 4 Jahren·discuss
I'm a huge fan of Tailscale and the team I work with uses it daily, for free, to connect to our servers and each other's computers. Thanks!
nitsky
·vor 6 Jahren·discuss
The first paragraph of the chapter on unsafe rust in TRPL reads:

> However, Rust has a second language hidden inside it that doesn’t enforce these memory safety guarantees: it’s called unsafe Rust and works just like regular Rust, but gives us extra superpowers.

I disagree that “{ X }” and “unsafe { X }” are the same. The former is provably safe if a bug free rust compiler accepts it. The latter leaves the burden of proof on the programmer.
nitsky
·vor 6 Jahren·discuss
There are two languages, “rust” and “unsafe rust”. All code in unsafe blocks is not safe.