Forgot your password?
typodupeerror

Comment Re:Propaganda Backfired (Score 2) 28

It's all up in the air now. Starmer resigned, and it looks like Burnham will run unopposed. He may keep the social media ban, as that has happened in other countries and seems to be reasonably popular and sensible. Should extend it to over 65s as well.

But the VPN ban I can see being walked back quickly as unworkable and unpopular. A pointless fight to have before the social media ban has even been tested.

Comment Re:How Adorable (Score 1) 51

Is there any info on how this location tracking would work? GPS isn't going to cut it, it needs a battery and world wide cellular/satellite connection to track things being shipped, and once installed will be in a Faraday cage (the server enclosure/rack/datacentre).

Are they going to rely on it detecting when it is in a Chinese server somehow? Try to get an external IP address? Something in the driver?

It seems doomed to fail and easily bypassed. I'm sure it will spur further investment in Chinese AI chip manufacturing too, which is already progressing at a very rapid pace.

Comment Re:C (and here are somemore chars to satisfy the b (Score 1) 39

UTF-8 was a mistake. I get that they wanted to make string handling with existing code as painless as possible, and for most Latin derived languages a 32 bit char is approaching 75% wasted space, but the issues introduced by UTF-8 are far worse. UTF-16 doesn't have enough code points. You could argue for 24 bit.

Comment Re:Give my my SysVInit (Score 2) 148

You botched copy/pasting the quite. I fixed it for you:

To start less.
And to start more in parallel.

That makes complete sense and is in fact how all major operating systems optimize boot times, and how software developers often optimize performance in general. Do as little as possible, and do as much of it in parallel as possible.

Tricky to do with init scripts because there are a lot of dependencies to manage and checks that need to be done for timing and sequencing. systemd makes it easy and I've used it extensively for building a custom OS for embedded systems where hardware init and configuration has to happen in specific sequences, but can be parallel with other parts of the OS starting.

Slashdot Top Deals

Never trust an operating system.

Working...