jrvidal | 6 years ago | on: Rust Ownership Rules
jrvidal's comments
jrvidal | 6 years ago | on: Rust Ownership Rules
I'd like to point out that `RefCell` does contain a bit of magic, since it is based on `UnsafeCell`, which is _the_ core "primitive" of Rust that enables interior mutability:
https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html
(Not trying to be pedantic, just to clarify things for less knowledgeable readers).
jrvidal | 7 years ago | on: Orange_slice: Research Kernel and Hypervisor in Rust
> while some of the systems aspects can be a bit lacking
Could you elaborate a bit on those two points? I think it'd be very valuable feedback for the Rust devs.
(Also, thanks for all the effort going into teaching this kind of stuff <3)
jrvidal | 7 years ago | on: Uber services suspended in Barcelona
* What do you mean by "concentrated in very few hands (mainly Uber and Cabify)"? Surely Uber and Cabify don't directly own those licenses, right?
jrvidal | 7 years ago | on: Using the Web for a Day with JavaScript Turned Off
jrvidal | 8 years ago | on: When it comes to internet privacy, be afraid, analyst suggests
What do you have in mind?
jrvidal | 8 years ago | on: Dark Matter May Be Trapped in All the Black Holes
jrvidal | 8 years ago | on: Dark Matter May Be Trapped in All the Black Holes
jrvidal | 8 years ago | on: A Physicist Who Denies Dark Matter
jrvidal | 8 years ago | on: A Physicist Who Denies Dark Matter
jrvidal | 8 years ago | on: A Physicist Who Denies Dark Matter
jrvidal | 8 years ago | on: A Physicist Who Denies Dark Matter
jrvidal | 9 years ago | on: Ask HN: Can I get in trouble for crawling using the Googlebot user agent?
Genuinely curious: on what basis? Can you trademark (or similar) a user-agent?
jrvidal | 9 years ago | on: A cartoon intro to WebAssembly
https://lists.w3.org/Archives/Public/public-webassembly/2017...
jrvidal | 9 years ago | on: Node v7.5.0 Released
jrvidal | 9 years ago | on: Async/await support in Firefox
[1] https://github.com/tc39/proposal-cancelable-promises/blob/ma...
jrvidal | 9 years ago | on: Async/await support in Firefox
https://doc.rust-lang.org/src/core/cell.rs.html#1483