HN user

ramranch

22 karma
Posts0
Comments23
View on HN
No posts found.

But unless we're saying that literally all graduates from top MBAs get jobs before those from other schools, the overall MBA count is still relevant.

The sentence is worded a little confusingly, but my interpretation of it is that for certain companies, since Amazon is a competitor in the business domain of that company, AWS is a nonstarter even if it's product offerings are a better choice. Walmart is the canonical example.

In case you were unaware, the source code of the original is included along with the re-release in this repository, as stated in the first sentence of the readme.

There are certainly areas where idiomatic Rust needs to fight against the borrow checker. If that wasn't the case, things like `ouroborous` and `pin_project` wouldn't be as widely used as they are.

But any standard web framework already would use a panic handler to turn a panic within application code to a 5xx error.

Every VPN worth its salt is located in a similar country, as it's critical for a VPN to operate out of a jurisdiction that does not require log retention for a certain period of time nor cooperates with Five Eyes law enforcement.

I am a fan of Rust, but I feel obligated to point out the return type of the current function does not provide any guarantees about the type which '?' was used on, even on stable. Since the generic requirement to use '?' with a return type of `Result<T,E>` is just `Into<E>`, you would still need to look at the called function since `From<E> for T` could be satisfied for (almost) any T.