_ahxg | 2 years ago | on: Why Async Rust?
_ahxg's comments
_ahxg | 2 years ago | on: Google has sent internet into 'spiral of decline', claims DeepMind co-founder
_ahxg | 2 years ago | on: Ask HN: Is it just me or is mobile web browsing awful?
It seems all about the hope that you can keep the user engaged long terms. I don't blame them, competition for user attention is brutal in the age of the SEO content farms, oligopoly of social networks and the "Tyranny of the Marginal User" as posted here a few days ago.
But probably way less effective now that most users seem overwhelmed by so many push notifications and instinctively learned to mass ignore or dismiss them (myself included, just randomly noticed that background habit a while ago). And then we end-up with piles of installed unused apps just like lost websites in the browser history.
_ahxg | 2 years ago | on: Why I eat old cheese (2020)
_ahxg | 2 years ago | on: Making Rust supply chain attacks harder with Cackle
Granted that the supply chain attack defense would fall on the hands of the users of the library. Unless the library writer aggressively pins of dependencies on the Cargo.toml (not the default semver action), problematic, but at least Cargo allows multiple versions of dependencies on a program, on Python for instance this is much complicated scenario (but still the smallest of the dependencies problems there).
_ahxg | 2 years ago | on: Protecting customers with generative AI indemnification
but at the same time, they put ToS that you may not train a new LLM using the output of their LLM...
_ahxg | 2 years ago | on: The HTTP/2 Zero-Day Vulnerability, and Israel-Gaza Internet Patterns
_ahxg | 2 years ago | on: It’s time to allow researchers to submit manuscripts to multiple journals
_ahxg | 2 years ago | on: Ask HN: Any alternatives to Duolingo without gamification?
_ahxg | 2 years ago | on: Google was founded 25 years ago today
_ahxg | 2 years ago | on: BoTorch – Bayesian Optimization in PyTorch
_ahxg | 2 years ago | on: Proof-of-Work Defense for Onion Services
_ahxg | 2 years ago | on: How to speed up the Rust compiler
{ "rust-analyzer.cargo.features": [ "ssr" ] }
Currently, though, you cannot enable the incompatible "hydrate" feature at the same time, sadly.
_ahxg | 2 years ago | on: Rust vs. Go in 2023
_ahxg | 2 years ago | on: Rust vs. Go in 2023
AFAIK, memory safety and language features as RAII is also available in C++, for instance. About the reasons for slow compilation, take a look at https://www.reddit.com/r/rust/comments/xna9mb/why_are_rust_p...
Not having a GC is also about not having a runtime as you mention (e.g. nice for creating Python extensions and embedded systems programming) and also more runtime deterministic performance: on that, if I'm not mistaken that was the reason for Discourse switching to Rust and also, e.g.: "the choice of Rust as the main execution language avoids the overhead of GC pauses and results in deterministic processing times" https://github.com/apache/arrow-ballista/blob/main/README.md