

Nestlé doesn’t need to be American for you to boycott it though.
Nestlé doesn’t need to be American for you to boycott it though.
I don’t think it’s true that it works best by doing bottom-up. I develop top-down all the time.
Whenever you need a new function/method/struct field/enum variant, just write its name where you are going to use it. Then intellisense will complain that it doesn’t exist. Press Ctrl+. (Or whatever you have keybinded to “apply suggestion”) And now it suddenly exists and intelligence works perfectly fine. It will just place a todo!()
or raise UnimplementedException
or whatever so you don’t forget to implement it later.
When I made my Lemmy account (the day reddit put a paywall on the API) most posts didn’t even have comments (sorting by hot/popular). And it would be common to run out of new posts after a bit of scrolling. Now it looks about the same level of activity as reddit 10-something years ago.
As a Spaniard, France has witched it’s place with America in my head.
You know america fucked up when it can overcome the implicit hatred towards your neighbor.
We have to experiment with mice before achieving the ultimate goal of laser shooting sharks.
Vs codium is a FOSS vs-code
This point is always stated about XML as if it were the most important part of choosing XML.
But jsonschema exists. It has the same capability.
The const hash map is huge. It was always a pain the have const/static hash maps. Specially since most use cases don’t need a DoS-resistant hash map. Will be migrating to 2024 as soon as possible.
I didn’t say that it’s not used. I say that you shouldn’t if you have the option.
If the entire X world uses Y technology. You have no choice other than using Y technology.
I don’t think anyone actually chooses XML. There’s no reason to use it over JSON unless you need to.
Considering that using a keyword to name anything results in compiler (or worse! Interpreter) errors, and that libraries are a thing. And also that copy-pasting code from the internet is a thing. I don’t think it would be a good idea to localize programming languages.
In Spain, I have started buying mercadona’s store-brand cola. It tasted basically the same as coca-cola at less than half the price and a fraction of the fascism.
I don’t understand the complaint of “subpar IDE support”.
It has the best IDE support of any language I’ve tried. It’s IDE support is also just a language server, which you can just download in your editor of choice and it just works. Are the people that complain about it not using rust-analyzer?
Your fellow man is probably a nazi if he bought a cyber truck.
Until I read this comment I was 100% certain the post was about short Germans somehow preferring having their balconies occluded by taller-than-them solar panels.
Just ask your ISP for more upload speed (and pay for it). It’s a thing you can do.
Also, most importantly. Assembly.
unsafe fn<'a, T>(p: &'a T) -> &'static mut T { p as *cons T as *mut T as &'static mut T }
It is a bit more than just dereferencing raw pointers.