HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nitsky

no profile record

comments

nitsky
·2 месяца назад·discuss
True, but it makes the specific collision the post observed completely impossible.
nitsky
·4 года назад·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
·6 лет назад·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
·6 лет назад·discuss
There are two languages, “rust” and “unsafe rust”. All code in unsafe blocks is not safe.