Viewing profile — bad-apple
bad-apple
HN member- Joined
- Wed, Jul 01, 2020, 8:42 AM UTC
- HN karma
- 14
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About bad-apple
No profile information was provided.
Recent public activity
-
comment
Comment #23802733
> RAII-based memory management without GC, and the concept of ownership vs. borrowing are very C++-inspired concepts. Why are you crediting C++ for an idea that is probably much ol…
-
comment
Comment #23746826
You seem to have it backwards. The goal is to discourage future manifesto-publishers from murdering. Just as school shootings used to be a good way to get your face on TV, murder i…
-
comment
Comment #23746769
This manifesto is just the expression of one man's fringe political views. There is a lot of rubbish in it. For example, he spends pages insinuating that leftism is rooted in masoc…
-
comment
Comment #23745695
If you'd used 50.. instead of _, Rust would've caught this error for you. ;) https://play.rust-lang.org/?version=nightly&mode=release&edi...
-
comment
Comment #23745538
Nitpick: I'm pretty sure that "11..50" should be a "10..50".
-
comment
Comment #23745460
Does it still elide the bounds check if you replace the first three lines with assert_eq!(xs.len(), ys.len()); ?
-
comment
Comment #23710683
What would a browser even need a backend for? The only valid use that I can think of is Google's Safe Browsing list, but if ad blocking can be implemented totally on-device, surely…
-
comment
Comment #23699342
I think Rust has another good alternative to this, although it might be cheating a little: you can just write (lo..hi).rev(). That way, the common case of going forwards is nice, a…