Hi I’m Holly! My pronouns are they/them, and she/her.

Extremely opinionated and can write walls of texts for very small passions.

I’m also anxious so if I interact with you and then disappear, I’m sorry I got overwhelmed!

hajkey: @hollyberries@blahaj.zone pfp: https://marupanda.art/

  • 1 Post
  • 27 Comments
Joined 1 year ago
cake
Cake day: June 8th, 2023

help-circle





  • hollyberries@lemmy.blahaj.zonetoLinux@lemmy.mlEndeavouros alternatives?
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    edit-2
    11 months ago

    1&2 - Can be solved by your DE and disabling notifications altogether with a toggle. XFCE4 panel has a notifications plugin that I have switched to DND when installing the system and haven’t turned it off since. It’s been 3 years :)
    3- I can’t comment on as I use #4. When it works, it works. When a bad update is pushed, it really doesn’t work
    4 - Garuda

    edit: WM -> DE











  • I use Duplicati connected to Storj with data volumes that incrementally get backed up once per month. My files don’t change very often, so monthly is a good balance. Not counting my Jellyfin library, those backups are around 1 TB. With the Jellyfin library, almost 15 TB.

    Earlier this year, I recovered from a 100% data loss scenario, as I didn’t (and still don’t) have space for physical backups. I have a 25 TB allowance, so my actual cost was €0. If I had to pay, it would have been under €1.




  • I personally wouldn’t, because the Unix philosophy should still apply. If you need 50k lines of bash to do something that a collection of existing command line tools already can do, you may need to re-evaluate your needs.

    As @nous@programming.dev said here, POSIX compliance is extremely important. Much of the “real world” infrastructure is still UNIX based, especially in finance. It isn’t easy to replace those systems at all, especially a legacy codebase that literally the entire world runs on. COBOL and Fortran applications in banking are still being updated today, despite efforts to modernise systems because they just work and the code is pretty much hardened at this point.

    As always, in every industry, there is a “right tool” for the job. The great thing about the Unix philosophy is, if correctly applied across your stack, it doesn’t matter what language you write the tools in. Your bash script is only going to be forwarding that output to something that is suited to handle it. This person sped up their python application by using Rust for one set of functions.