Was reading up on dc and a source said one of its advantages is its use in obfuscated code competitions.
If a language is good for writing obfuscated code, maybe that’s a bad sign.
I talked to a man yesterday who has 5 virtual assistants.
I only have two: Python and Bash.
I used to have a virtual assistant named Perl but I had to let her go. I got along with her OK but not the rest of my staff.
You can look for files between a pair of dates using -newermt twice: files with newer modification time than one date and not newer than another date.
find . -type f -name "*.tex" -newermt "2025-03-01" ! -newermt "2025-06-01"
Note the command has a bang, not a pipe.