It might be "sweeping" but I don't see anything with a big economic impact in there. The biggest impact is reduced labor rights.
Most C++ devs blame themselves and not the language though. So it still gets used a lot.
If you use the SQLite C API like this
char query[256];
snprintf(query, sizeof(query),
"SELECT * FROM users WHERE username = '%s'", username);
int rc = sqlite3_exec(db, query, NULL, NULL, &err_msg);
and someone enters Robert'; DROP Table Students;-- as username, it deletes the table Students.
const char *sql = "SELECT * FROM users WHERE username = ?";
int rc = sqlite3_prepare_v2(db, sql, -1, &stmt, NULL);
if (rc != SQLITE_OK) {
fprintf(stderr, "Failed to prepare statement\n");
return;
}
sqlite3_bind_text(stmt, 1, username, -1, SQLITE_STATIC);
Using this "prepared statement" and "bind", your code is secured against such SQL injection attacks.
Maybe we should do a Chaos Monkey approach: Shut down a random US company in a random region for day. Repeat every few days. Just resilience testing.
I use Lutris for games from GOG on Linux and it works ok. Welcome to the club!
Gmail to Mailbox.org. Whenever I'm using it to login somewhere I get reminded that no US corporation can steal or shutdown my identity.
Well, if these committees were in the USA, the government (i.e. Trump) could and would decide who gets the Nobel Prizes.
Android/iOS users: What is “closing“? What is a „program“?
And it works just as well, if we reverse the roles:
🪨🪨🪨🪨🪨
🪨🪨🪨🪨🪨
🪨
Human: There are 11 rocks.
Alien: Oh, you must be using base A. See, I use base 10.
Human: No, I use base 10. What is base A?
Only if done slowly like step-by-step over the next 10 years.
The US provide some capabilities to NATO which the others cannot substitute immediately.

As long as Merz remains chancellor, this course will not change.