Fresh clear water when you’re alarmingly thirsty.
That was hilarious. I totally get it, kid.
Beer-drinking European living in 'Murica here. For certain styles, the US has fantastic beers available. In particular IPAs (which don’t always have to be mega hoppy!), pale ales, pilsners, amber ales, and stouts. Plenty of great choices to be found here, if you discover the right breweries. That’s key, because there are a lot breweries with imo questionable taste.
What’s harder to find are good beers of other styles, such as Belgian or German beers. US breweries try, sometimes, but they aren’t succeeding.
Ok, sounds cool. So I downloaded a .xdc file and… now what? I think they should’ve started with a paragraph on how to actually run one of these files.
inoreader seems very ergonomic, thanks!
I’ve been interested in trying out RSS again but I don’t want to self-host. Can anyone recommend a RSS client (hosted, local, or whatever) that they like?
Moving from C to C++ would also not solve any real problem. C++ of course adds OOP which I think can be nice (not everyone agrees with this!) but it also adds an insane amount of language complexity and instability. Mentally reasoning about C code is hard, reasoning about C++ code is nearly impossible.
Rust however brings a novel solution to classes of problems like ownership and mutability with the borrow checker. It’s now accepted to be a great tool for writing high performance code while preventing a substantial amount of common, but often subtle, bugs from slipping through. It’s not arbitrarily the first non-C code to be accepted in the kernel. And it’s used in other operating systems like Android and Windows already.