• 0 Posts
  • 65 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle


  • folkrav@lemmy.worldtoSelfhosted@lemmy.worldJellyfin on Proxmox
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 months ago

    The Docker engine itself, meaning the dockerd daemon, its APIs and the docker CLI, are all under Apache 2.0. The non-free parts are mostly in their Docker Desktop offering, which is mostly a convenience GUI and not absolutely necessary (the easiest, on Windows and macOS, probably, but not the only one) to run Docker on most platforms.


  • Hmm. My old phone died after hitting the floor, unfortunately… Maybe there’s some older, relative it capable device I could find…

    To be perfectly honest though, I’m having so many issues with AA I’m not too attached to the specific product. It’s been randomly dropping its connection and reconnecting ever since I bought that car (2017 Hyundai), and nothing works to fix it. I tried multiple phones, tons of cables of variable quality, a wireless adapter, none of it fixes it. Meanwhile, my wife’s iPhone is working perfectly great on the same head unit and USB port. ¯\_(ツ)_/¯ I just don’t know of any half decent alternative…




  • Oh, for sure! But I’m a developer myself, so like most of us, I tend to take my technical opinions as gospel by default 😉

    Sometimes it can be fun to push your limits or see how far you can go down some personally motivated rabbit hole. Just saying, I’d never do it with bash myself. Don’t get me wrong, I write bash scripts all the damn time, but the second it gets more complicated than aligning a handful of simple commands without too much output parsing BS, requiring some obscure awk one liner nobody understands after 2 days, I bail out to something less awkward.


  • I’ve been working as a dev for 8+ years, been programming for much longer. Yes, many things are possible with bash. Many things are also possible using straight assembly, but nobody does that - for good reasons…

    Many of those problems you mentioned have well established, open source solutions that should not end up in lost work or data. Building things yourself also has the downside of maintaining those things, and dealing with your own (inevitable) failures yourself too. I’d rather trust established solutions for things as complex as provisioning than roll my own. But whatever works for you.

    If I were to write that much code by hand, I’d just choose something saner than bash, purely from a language perspective. That’s all.