Thanks! I've personally been using NTFS drives for stuff that I've wanted to share between Windows and Linux, which (when I set it up) was a lot easier than finding stable drivers for Windows for Linux filesystems
Logic gates are hardware, not software
That's the case of for any optimization work, really
Amusingly, modern C++ allows you to copy the rust signature nearly 1:1:
auto getofmylawn(Lawn lawn) -> Option<Teenager> {
return lawn.remove();
}
Please consider adding paragraph breaks to your posts; a wall of text like this is not pleasant to read
Linux supports BitLocker encrypted partitions. You just have to specify the BitLocker recovery-key in your fstab file or on the command-line. I've been dual-booting with disk encryption enabled on both Linux and Windows for several years, using that functionality
Unix shell scripts are one of the few holdouts.
I don't know if this applies to other shells, but bash will not only execute your script line-by-line, it will also read it line-by-line. Which means that you can modify the behavior of a running script by editing lines that have not yet been executed*. It's absolutely bonkers, and I'm sure that it has caused more than one system failure, during upgrades.
* For example, if you run the following script
echo "hello"
sleep 5
echo "goodbye"
and then edit the third line before the 5 second sleep has elapsed, then the modified line will be executed.
They’ve already been using Claude for at least the last few months; you’ll find a
CLAUDE.mdfile and related settings in the uv repo if you look