[-] fruitcantfly@programming.dev 2 points 1 week ago

They’ve already been using Claude for at least the last few months; you’ll find a CLAUDE.md file and related settings in the uv repo if you look

[-] fruitcantfly@programming.dev 1 points 1 month ago

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

[-] fruitcantfly@programming.dev 1 points 1 month ago

Logic gates are hardware, not software

[-] fruitcantfly@programming.dev 1 points 3 months ago

That's the case of for any optimization work, really

[-] fruitcantfly@programming.dev 2 points 3 months ago

Amusingly, modern C++ allows you to copy the rust signature nearly 1:1:

auto getofmylawn(Lawn lawn) -> Option<Teenager> {
    return lawn.remove();
}
[-] fruitcantfly@programming.dev 2 points 7 months ago

Please consider adding paragraph breaks to your posts; a wall of text like this is not pleasant to read

[-] fruitcantfly@programming.dev 2 points 9 months ago* (last edited 9 months ago)

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

[-] fruitcantfly@programming.dev 2 points 10 months ago* (last edited 10 months ago)

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.

view more: ‹ prev next ›

fruitcantfly

joined 2 years ago