• 0 Posts
  • 78 Comments
Joined 2 years ago
cake
Cake day: September 14th, 2023

help-circle

  • Unnecessary rant: I actually just had to downgrade my 575(?) driver after spending a few days trying to troubleshoot a freezing laptop. One day I walked away when it happen and that actually gave me the logs I needed to find the Nvidia driver was freezing the machine and then spitting logs out after giving up 10 minutes later (but still keeping things frozen). Was driving me nuts, thinking my hard drive was seeing the light, even though all tests for it were passing with flying colors!

    I’m hesitant to try this new version since I didn’t see anything in the changelog about freeze fixes lol.


  • Daily on my Gentoo server, through a Cronjob every morning. It’s a custom script though, so there’s more than just doing an emerge update. It’ll send me ntfy notifications for the update results, if there are new news items, and if there are any time config merge updates to make. A few other things as well but that’s the main stuff.

    Other servers, typically weekly or only manually when I ssh into them (for the ones I don’t really feel the need to update frequently).


  • The way I understood it, invasive simply meant a species that grows and spreads at an aggressive speed in an ecosystem that it did not originate from. Fire ants very much match this definition as they were introduced outside of south Africa into several ecosystems where they spread at an aggressive rate.

    https://en.wikipedia.org/wiki/100_of_the_World's_Worst_Invasive_Alien_Species has a nice list of examples of species that are simply classified as invasive. Fire ants are on the top 100 list there.

    That being said, while fire ants are not invasive to South Africa technically, this can be said about all species in the world (that they’re not invasive to SOMEWHERE). I didn’t feel the need to say where I was located in my message since it felt redundant, and as the term invasive should be assumed to talk about how whatever it is, is invasive to somewhere else, wherever that is.




  • I use it for my media server and have been for a long time.

    Tldr: started so I could learn and understand Linux, still use it since I’m comfortable with it and it’s familiar/fast for my needs.

    How it started: I kept going back and forth between windows and Linux, but never truly understood Linux like I did Windows. I eventually decided that I should try to install a Linux distro from scratch and learn the entire process manually so that I could understand it at a strong level. Gentoo has some of the best, if not the best, documentation for this. After spending several days going through the entire install process to finally get that login screen and UI up and running, I had learned more about Linux in those few days than I did the previous 3 years. I wanted to keep going, so I kept it on that laptop and continued to learn and become way more efficient than even Windows.

    Why I still use it, specifically for my media server: partly because I understand Gentoo more than any other distro I’ve used, so I’m extremely comfortable with it. But mostly because I know every little thing on my server. I never find things I don’t recognize, because I installed it. I made the explicit decision to all the software I installed on my system. And I truly do feel like I’m in absolute control of the entire thing, in and out. On top of this, it’s truly as high in performance as it sounds.

    As I type this, my media server is running 76 docker containers (no, not 76 services), 4 of which are game servers I host 24/7 for friends, and I’m only using 32GB of memory. CPU is rarely, if ever, above 20% (12 core Ryzen). The need to upgrade is really far out there, so that just adds to my reasons to continue using it. That being said, I’ve never run something like a Debian media server with all the same stuff on it… It’s very possible it’s just as good, but I really don’t know. I’m too comfortable where I am to spend time finding out lol.






  • Rather than leave another long reply to read, I’ll leave my thoughts simple: if you have another computer you’re not using, try Linux mint and see if it fits your needs. If it’s too much and you can’t get the time needed to figure things out, 11 might be the choice (for now).

    But either way, keep Linux on the second and learn a little bit as you get time to! :)


  • As a professional, my reasoning for NOT using AI is as follows:

    1. I don’t want to lose the muscle memory of what I do. Sure AI might be able to do annoying things like test templates… But that’s not a skill I want to forget or lose, as self written unit tests have actually helped me catch mistakes that “would have worked” in prod (i.e. Code functions, but has undesired outcomes). AI can’t usually spot that.
    2. As a person who digs deep in cyber security and monitors heavily the malicious realm, I’m paranoid of malicious or weak code being spit into my repos.
    3. I’m a privacy nut, too. Most “good” AI solutions are anti privacy.
    4. If anyone here has done a proper code review of AI generated code from coworkers, they should know it adds a ton of extra time because of errors, inconsistencies with repo practices, etc and actually wastes the time of the developer and reviewers.

    Am I saying “NEVER AI?”? nah. But it’s far from ready for me personally to even consider for programming purposes. I’m also well aware this isn’t what many others think or feel; I don’t scream at people for using it if it’s what they feel helps them.


  • I use to have the same thing but moved away from the tablet solution and I got myself a pi, and then setup a script to auto start (after boot and auto login) the browser in full screen “kiosk” mode on my home assistant site. I then bought this to attach to it:

    https://www.amazon.com/gp/aw/d/B0153R2A9I

    I also bought a case for the screen and pi to fit in for a nice visual display (although these days the thing is embedded in my wall), but it looks like the case is now unavailable so might require looking around for one.



  • I’m not familiar with those two… But I’ve always been hunting for the perfect replacement.

    I started with Nextcloud Deck and used it extensively until they got rid of my markdown support.

    So then I tried taiga and a few others before landing on Wekan. Really great software, but the terrible API, horrible mobile support, and slow outdated UI drove me away…

    Now I’m on Vikunja, which ironically doesn’t support markdown text. So I basically returned to square 1 with a better UI lol. I almost stayed on Wekan because of the checklist support, but the faster speeds, nice API, and slick UI in vikunja landed me here… for now.


  • If you go for btrfs, be careful going backwards on kernel versions.

    I had upgraded my kernel on Gentoo, which also happen to include a btrfs update. Booted up and found the latest kernel didn’t like something about my full disk luks encryption with RAID mirror setup (for the root partition, and unrelated to btrfs), so I decided to go back to the previous kernel. Big mistake.

    My entire root partition got corrupted to hell. It mounted read only at first so I decided to try to go through regular repair steps. It got worse. Got to an eventual step that someone said could take a few weeks to restore (forgot the commands). This isn’t an option for my server. So with snapshots broken, unable to use the old and now new kernel due to corruption from attempting to go back to a previous kernel, I had to restore with a full partition clone backup I had created prior to the kernel upgrade… Also went back to ext4 again afterwards.

    Btrfs treated me really well for a few years, and snapshots and performance are great, but once it hits a hiccup, you might in a world of trouble. Don’t think I’ve ever run into such a thing with ext4 over the years, which is why I reverted to it - not saying it’s immune to such things, but this is just me.

    Not sure if zfs would have such a dramatic situation, but maybe something to consider about btrfs if you ever decide you’ll need the ability to go back a kernel version due to whatever reason.