

Basically comes down to being “advertiser friendly”.
Because of that:
- Platforms like YouTube and TikTok downrank you through the algorithm because they can’t put ads on your video to monetize it
- People probably want to upload talks to YouTube, so it’s taken into account even if there’s nothing preventing you at the actual conference.
- People don’t want to be censored on those platforms, so other terms are reused to avoid angering the algorithm (so we got, unalive, PDF files, and all that stuff)
- It bleeds into the common language.
That’s not new: there’s a reason there’s a million way to talk about taking a shit. Everytime it becomes too popular/“gross”, a new one is born that’s supposedly more classy. Same thing happened with toilets/bathrooms/restrooms/water rooms. I don’t know why we still try to pretend we don’t all take a shit every now and then.
For all its flaws and mess, NFS is still pretty good and used in production.
I still use NFS to file share to my VMs because it still significantly outperforms virtiofs, and obviously network is a local bridge so latency is non-existent.
The thing with rsync is that it’s designed to quickly compute the least amount of data transfer to sync over a remote (possibly high latency) link. So when it comes to backups, it’s literally designed to do that easily.
The only cool new alternative I can think of is, use btrfs or ZFS and
btrfs/zfs send | ssh backup btrfs/zfs recv
which is the most efficient and reliable way to backup, because the filesystem is aware of exactly what changed and can send exactly that set of changes. And obviously all special attributes are carried over, hardlinks, ACLs, SELinux contexts, etc.The problem with backups over any kind of network share is that if you’re gonna use rsync anyway, the latency will be horrible and take forever.
Of course you can also mix multiple things: rsync laptop to server periodically, then mount the server’s backup directory locally so you can easily browse and access older stuff.