• 0 Posts
  • 9 Comments
Joined 2 months ago
cake
Cake day: March 26th, 2025

help-circle
  • I appreciate systemd at a high level, and use it all the time, but Nanook’s comment in this thread is dead on the money in my book:

    https://lemmy.world/post/30945123/17510444

    The CLI interfaces for PA and SysD are janky/verbose af and make it hard for beginners to do simple things as well. E.g. try wiring up a virtual device with pacmd that fuses your desktop audio and mic output into a combined source using only the man pages, or putting together a fresh service from memory without looking up any directives.

    E: even better example, compare how easy it is to set something up to run in cron vs. a systemd timer.


  • Sorry, bad phrasing on my end. I agree the community should suspicious, but I think the flawed premise in

    It seems like there isn’t much criticism of the company or their tactics, and I’m curious if any of you think that should change.

    is that there is consistent, well-founded criticism and has been this whole time. And even though the vocal folks are a minority, a lot of people feel ambivalent about the relationship rather than viewing it favorably.


  • dgdft@lemmy.worldtoLinux@programming.devShould we be wary of Red Hat?
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    2
    ·
    2 days ago

    I do think there are quite a few linux users and developers who are suspicious of Red Hat, they are a small-ish but pretty vocal minority.

    Yeah, I’m with you all the way — no shade to OP, but the question has a flawed premise. I think the majority opinion is that they’re both an asset and a liability. They’re a huge contributor to the ecosystem and have done a lot of practical good, but I also think the community will turn on a dime if the suits overstep into FAFO territory.

    (All that said, fuck Lennart Poettering. Dude couldn’t design a plan to get himself out of a paper bag.)





  • Flatpak is quite fucking far from perfect, and will always remain so due to its flawed design and UX approach.

    Pretty sure the culprit here is Fedora’s packaging which adds an opaque systemd timer to run auto-updates, but the thread immediately next to this one on my homepage just happened to be a nice case-study in Flatpak fuckery: https://lemmy.world/post/30654407

    Of course, the proposed changes in the article do nothing to fix this sorta problem, which happens to be the variety that end users actually care about. Flatpak is an epic noob trap since it pretends to be a plug-n-play beginner friendly tool, but causes all sorts of subtle headaches that newcomers inevitably don’t have diagnostic experience to address.


  • Speaking as a data engineer, you’re having trouble because git is the wrong tool for the job. You can make it work if you use git-lfs + custom hooks — but if you choose to go that route, be aware you’re making things unnecessarily hard for yourself.

    If you want to make this easy, separate out your concerns:

    1. Versioning: take periodic snapshots of your unconverted files with a binary-friendly diffing tool like restic or borg. Alternatively, ZFS/btrfs snapshots are an excellent way to handle this.
    2. Conversion: keep your original files in their own directory. Set up a small script that searches your directory of original files recursively, passes the files to lame to encode to V0 or V2, and outputs them to a separate directory of lossy mp3 files.
    3. Syncing: use rsync with the --delete flag to copy your lossy files to the server + clear out files you’ve removed locally.