I delayed upgrade to IPadOS 26.3 til reddit users shared on /r/ipad that its performance was on par with older version now. However, once I upgrade, the performance issues and bugs are noticeable instantly. For example,
1. switching between different browser tabs has a sub-second delay(est 200ms)
2. a tab in system settings menu takes 200ms to load
3. maximizing a video doesn't always work(sometimes it leaves a big white space on top)
4. double tabbing a keyboard key often triggers zooming into the browser page
I couldn't believe these issues haven't been fixed after 3 subversions.
It even censors contents related to GDR. I asked a question about travel restriction mentioned in Jenny Erpenbeck's novel Kairos, it displayed a content security warning as well.
> Every mammal on this planet instinctively develops a natural equilibrium with the surrounding environment but you humans do not.
Though it's an interesting quote, I have to disagree. The reindeers on St. Matthew Island continued to multiply and depleted their food resources without any predators, until an extreme snow storms struck. They don't "instinctively" develops a natural equilibrium.
I think Rob Pike has changed his idea. I remember watching Youtube video featuring language designers(golang, d and rust), where Rob Pike, Andrei Alexandrescu and Steve Klabnik talked about the stories behind three languages. Rob Pike said something like, "Golang was mistakenly called system language, it should be called server programming language instead".
I tried to find the video on youtube, but to no avail.
inline double ranges_pipeline(std::span<double const> xs) noexcept { auto costs = xs | std::views::transform(calibrated_mv) | std::views::transform(residual) | std::views::transform(weighted_square);
}
It's still a bit verbose, because C++ doesn't allow universal function call syntax. It will be even more concise in other languages like D.