I had a computer lab teacher in the 90's that was known to tell really long stories, it could be a joke or a shaggy dog depending on his mood, but you wouldn't know until the end. "Jesus saves" was the punchline to one related to computers. I haven't thought about him years. Thanks for the reminder.
I don't think it's a question that modern systems are more stable; any belief otherwise is just pure nostalgia (or someone who wasn't actually working on computers in the early 90's). Plus, the advent of autosave truly was a game-changer.
*ignores other comments that already do so and attempts to educates you on the fact that you should have saved your work, thus positioning myself as your guide and mentor in my head to briefly drown out my insecurities and lack of purpose*
Any on-going work gets a new version daily. I start the day by saving current work to a new file, with the date/time in the file name:
E.G. Project Name 2024-04-09_08-32.xls
Using date with 24hr/military time like this enables sorting, and makes clear when the file was updated. This is especially useful iyou have to share a doc with peers - you never question what version they're looking at (can't always use a version control system).
Yep, and with seconds at best delays. Stopped typing or making changes for three seconds? Save!!
Though autosave kinda' requires a huge undo limit, at least for me when doing anything remotely artsy. I'm nowhere good enough to not make minutes-long mistakes.
If you work a lot with plain-text files (markdowns, office documents CSV etc.) try learning Git. It is a version control tool - it keeps timestamped versions of your documents, so if you edit something wrong, or delete a wrong file you can bring it back by "checking out" a previous version.
It's a software development tool originally, so learning it might be daunting for a lot of folks - fear not, download a graphical Git client app and look up some tutorials.
I promise once you get the hang of it, it will be hard to imagine doing anything without it.
One of those tools I wish were more popular among people who are not into software/engineering.
Indeed it is! That is why we are blessed to have its power obscured by an incomprehensible CLI, aside from a few most common use cases. Still very worth it though.