

Premature optimisation often makes things slower rather than faster. E.g. if something’s written to have the theoretical optimal Big O complexity class, that might only break even around a million elements, and be significantly slower for a hundred elements where everything fits in L1 and the simplest implemention possible is fine. If you don’t know the kind of situations the implementation will be used in yet, you can’t know whether the optimisation is really an optimisation. If it’s only used a few times on a few elements, then it doesn’t matter either way, but if it’s used loads but only ever on a small dataset, it can make things much worse.
Also, it’s common that the things that end up being slow in software are things the developer didn’t expect to be slow (otherwise they’d have been careful to avoid them). Premature optimisation will only ever affect the things a developer expects to be slow.








Cultural appropriation is something like McDonald’s advertising a new Indian burger and it’s just a beefburger with some chillies in it, i.e. someone’s attempting to gain from a bastardised caracature of the culture that wouldn’t be something someone from that culture would participate in. Right wing pundits intentionally misrepresented it as things like eating a traditional dish from another culture to make it sound stupid so people would dismiss it, and then people who’d only heard the misrepresentation but wanted to do the right thing or at least appear to be doing the right thing started acting like it was immoral to participate in any culture you weren’t born into.