• 0 Posts
  • 33 Comments
Joined 2 months ago
cake
Cake day: August 25th, 2025

help-circle
  • Keep in mind that sometimes a Battle.net update will be released that will essentially break playing WoW and other games via the launcher on Linux. usually it’s resolved within a couple days. your best bet is to install it via a Lutris script and if something goes wrong DO post about it either on the Lutris Forums and/or Discord because one of the main Lutris devs is a WoW player so if there are issues with installing WoW on your system he will be right on top of it. It’s your best bet in resolving an issue, he knows all the work arounds and fixes to get battle.net and WoW running on any distro.



  • the only issues I had with KDE when I was recently using it all revolved around the panel. Random crashes with “too much” interaction. Adding widgets for the panel or desktop is still to this day hit or miss. clicking the “get new widget” option is a roll of the dice if it will actually work or not or even find the thing you want. It’s still horrible at loading stuff in there. and installing whatever, again, is a roll of the dice if it will actually do it or not.

    I like KDE, it’s a good and solid DE but man do they really need to focus on fixing the panels and the installation/discovery of widgets. The alternative is using the pling store and that’s just a headache on it’s own.


  • Years ago when I still worked for companies as an employee my team had this PM that was so desperate to get things done and get them done early. I mean he was a nice guy but always pushing. The thing is though my team was pretty damn solid and we got stuff done early, all working, tests passed, all that cause we liked to play battlefield 3 and eve online together when we had the free time. Course we never told the PM this. Also the PM liked to motivate us with food if we worked late to get stuff finished. So we used this to our advantage and once or twice a week we allowed the PM to buy us dinner and beer/snacks because we told him we’d be working late to ensure deadlines were met. When in reality we’d just be in the office playing eve online together and wanted food and beer while we did so.

    I don’t feel bad for the project manager, he came from money, he constantly told everyone he came from money, so we took his money.



  • on my CachyOS/Arch and NixOS machines I just use borg to backup to my dedicated server. Very easy to do. I have a couple alias’ set up so I can view my backups easily through my file manager on whatever local machine. Essentially all you have to do is make a script to tell it what files/folders to backup, what to potentially ignore, how often you want to backup, the time of day you want it to happen, can also tell it to delete old backups. In NixOS it’s painfully easy to set up and can be done within the configuration.nix. On other distros the only difference is you have to set up a service and timer for it.

    but I like it, it’s straight forward, never had issues with it.





  • I have ubuntu on my server and I really need to switch it. It’s such a dick move when you apt install something and it opts for a snap. I just roll my eyes and groan when I think of having to back up EVERYTHING (music, media, dockers configs, compiled projects, random projects, etc) in order to switch the distro. I dont’ have the time to do it. It’s like nearly 2TB worth of stuff.


  • I have my own SearXNG self hosted Instance but I’m probably going to switch it to 4get today. I’ve just noticed it getting worse and worse over time. slow, bad results, or just randomly starts 504ing when everything else (forgejo, vaultwarden, navidrome, jellyfin, Akkoma, etc) on my server continues to work fight.

    Tried some 4get instances and it’s just so damn snappy and quick.


  • you know the Fast and the Furious movies? at least the original 2 or 3, those cars were all tricked out with neon lights, decals, nitros, custom exhaust, all that? most of those cars were Japanese cars that were heavily modified. Basically it was a derogetory term for modifying a piece of shit car to look good, Especally if it was a Japanese car. you slap a body kit on it, neon lights, slap in some bucket seats, switch out the exhaust, but you dont’ touch the engine. that’s a “Ricer” it’s not a good thing in that specific car culture.

    So for whatever reason someone at some point was modifying their Desktop Environment or Window Manager with neon borders and all that and decided to call it a Rice. You’re essentially modifying your OS without touching the “engine” so to speak. You’re just slapping a body kit, neon lights, some bucket seats etc onto your operating system.



  • this was the script I used to download my youtube playlist, you can modify it to do spotify also:

    #!/bin/bash  
    
    PLAYLIST_URL="$1"  
    
    if [ -z "$PLAYLIST_URL" ]; then  
        echo "Usage: $0 <youtube_playlist_url>"  
        exit 1  
    fi  
    
    # Log file with timestamp  
    LOG_FILE="$HOME/music-downloads/download_$(date +%Y%m%d_%H%M%S).log"  
    
    echo "Starting download at $(date)" | tee "$LOG_FILE"  
    echo "Playlist: $PLAYLIST_URL" | tee -a "$LOG_FILE"  
    echo "----------------------------------------" | tee -a "$LOG_FILE"  
    
    # Run sldl with YouTube playlist  
    sldl "$PLAYLIST_URL" --yt-dlp 2>&1 | tee -a "$LOG_FILE"  
    
    echo "----------------------------------------" | tee -a "$LOG_FILE"  
    echo "Download completed at $(date)" | tee -a "$LOG_FILE"  
    
    

    I just ran this in a screen session. You don’t have to log everything but I did it so I could check to see what songs weren’t on soulseek from my playlist.





  • right that’s why I said worse comes to worse and to take it with a grain of salt. For very simple issues it’s fine, beyond that it’s a coin toss. It’s a fine rubber duck. Like if I missed something obvious but I’m just not seeing it then it might point that out for me. Like for example I recently reinstalled my OS and I couldn’t get wireguad to work so as a last ditch effort I plugged it into Claude and it told me that I had forgotten to replace a privatekey on one of the peers. I had just completely missed it.