Viewing profile — retrocat
retrocat
HN member- Joined
- Fri, Mar 09, 2018, 8:23 PM UTC
- HN karma
- 28
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About retrocat
No profile information was provided.
Recent public activity
-
comment
Comment #34928547
The research article is located here: https://www.pnas.org/doi/full/10.1073/pnas.2101084119 >; if you're interested in what "likely" means in this context, it may be beneficial to …
-
comment
Comment #34810084
> We know that moving `Arc ` will not change the location of the `Db` object, but there is no way to communicate this information to rustc. There is! `std::pin`[0] does just this (…
- comment
-
comment
Comment #33726533
I created my own web framework ( https://docs.rs/under/latest/under/ >) to address some of my own perceived issues with a lot of current rust web frameworks - typing issues being o…
-
comment
Comment #33282046
Are you sure this is the same code that triggers the vulnerability? Is the double `update` in the post itself unimportant (i.e., first updating with a 1-byte string, then the 4,294…
-
comment
Comment #33196411
I don't think that's what they're claiming at all. I think what they're claiming is that it's far easier for individuals to be corrupt if their CEO is similarly corrupt, which is a…
-
comment
Comment #32833773
As far as I can tell, this can't actually work, because the return type of `fn next(&'a mut self)` should actually live for some lifetime `'b` that is shorter than `'a`, instead of…
-
comment
Comment #28910055
Because filing that counter-notice requires you to provide personal information, in case the person who filed the original DMCA wants to serve you with a legal notice. From https:/…
-
comment
Comment #24595595
> I don't think a general non-persecution right exists. Yes, and no; one can be criticized for membership of a social group, but when people take action against the social group, I…
-
comment
Comment #24595480
Whether or not Spotify is a downgrade is not the point here; the point is that Joe Rogan has a platform that allows him to propagate his message to the mass, and that Spotify has a…
-
comment
Comment #24595350
I can somewhat understand the point of the employees here, but ultimately, I think it's a symptom of a larger problem - of easy propagation misinformation, with very little oversig…
-
comment
Comment #16726959
AtomicUsize is stable!
-
comment
Comment #16662803
I'm quite fond of error-chain ( https://github.com/rust-lang-nursery/error-chain ), which helps mitigate it somewhat. You can do things like: use error::{Error, ErrorKind, Result, …
-
comment
Comment #16554685
TC39 is the standard body for ECMAScript, which JavaScript implements. smoosh was a proposed alternative name (see: https://github.com/tc39/proposal-flatMap/pull/56 ) for flatten (…