HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nitsky

no profile record

comments

nitsky
·2 bulan yang lalu·discuss
True, but it makes the specific collision the post observed completely impossible.
nitsky
·4 tahun yang lalu·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 tahun yang lalu·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 tahun yang lalu·discuss
There are two languages, “rust” and “unsafe rust”. All code in unsafe blocks is not safe.