Alt account of @Badabinski

Just a sweaty nerd interested in software, home automation, emotional issues, and polite discourse about all of the above.

  • 0 Posts
  • 20 Comments
Joined 5 months ago
cake
Cake day: June 9th, 2024

help-circle





  • I feel this is a reductive argument. Parents should help their kids avoid harm while also encouraging growth. Phones and the Internet can absolutely encourage growth. The parent’s job is to ensure that the phone isn’t harming them. If the kid isn’t on the phone too much, isn’t picking up bad shit from the phone, and isn’t harming anyone else, I don’t think it makes sense to deny them.

    If the kid is being harmed by being on the phone, then the parent should try to figure out what the problem truly is so they can find good solutions. I was on the computer too much as a kid and missed out on important shit. Rather than ripping out desktop out of the desk in a rage (which is what happened), my dad should have thought about why I felt the need to escape from my life so much (e.g. being afraid of a father who would do shit like rip out a computer and threaten to throw it off of a second floor balcony, self hatred, intense bullying at school, or alllll the crazy shit my mom did). He didn’t try to help me fix the things that were harming me, so all I had was my computer and the few people who didn’t seem to hate me.

    I spent so many hours browsing Wikipedia, learning about scientific concepts. I talked to people who had lives like mine and were able to commiserate. I found a place and community that I was lacking in my everyday life. I learned skills that eventually translates to a successful career in software development. I don’t think that it’s good when kids feel like they need to escape to the Internet, but I think that having access to all the great stuff out there is worth it. For the kids who have awful lives because of shitty fucked up parents, the internet (or any escapist coping mechanism) can literally save them, albeit at a substantial cost.

    The internet can be harmful, but we only seek out harmful things when the alternative is going without things we need. I think this is also true of children, so the question I feel parents should ask is “what does my phone-addicted kid need?”





  • Ugh, I hate ChatGPT. If this is Bash (which it is, because it’s literally looking for files in a directory called ~/.bashrc.d), then it should god damned well be using syntax and language features that we’ve had for at least twenty fucking years. Specifically, if you’re writing for Bash (and not POSIX shell), you better be using [[ ]] rather than [ ]. This wiki is my holy book I use to keep the demons away when writing Bash, and it does a simply fantastic job of explaining why you should use God damned double square brackets.

    ChatGPT writes shitty, horrible, buggy ass Bash. This is relatively decent for ChatGPT (it even makes sure the files are real files and not symlinks), but I’ve had to fix enough terrible fucking shitty AI Bash to have no tolerance for even the smallest misstep from it.

    Sincerely, A senior developer who is known as the Bash wizard at work.

    EDIT: Sorry, OP. ChatGPT did not, in fact, write this code, and I am going to leave my comment here as a testament to what a big smelly dick I was here.



  • Badabinski@kbin.earthtoLinux@lemmy.mlGoldilocks distro?
    link
    fedilink
    arrow-up
    25
    arrow-down
    8
    ·
    2 months ago

    For me, it’s Arch for desktop usage. When I first started using Arch it would not have been Arch, but now it’s Arch. The package manager has great ergonomics (not great discoverability, but great ergonomics), it’s always up to date, I can get a system from USB to sway in ~20 minutes (probably be faster if I used the installer), it’s fast because it doesn’t enable many things by default, and it’s honestly been the most reliable distro I’ve ever used. I used to use OpenSUSE ~10 years ago, and that broke more in one year than Arch has in ten.

    I personally feel like Arch’s unreliable nature has been overstated. Arch will give you the rope to hang yourself if you ask for it, but if you just read the emails (or use a helper that displays breaking changes when updating like paru) and merge your pacnews then you’ll likely have a rock solid system.

    Again, this is all just my opinion. It’s easy for me to overlook or forget all of the pain and suffering I likely went through when learning how to Arch. I won’t recommend it to you, but I’ll happily say how much I’ve come to enjoy using it.



  • The tiered storage stuff is pretty cool. You can say “I want this data on this disk, so if I get a cache miss from a faster disk/RAM it’ll come from this other disk first.”

    I believe it also has some interesting ways of handling redundancy like erasure coding, and I thiiiink it does some kind of byte-level deduplication? I don’t know if that’s implemented or is even still planned, but I remember being quite excited for it. It was supposed to be dedupe without all of the hideous drawbacks that things like ZFS dedupe have.

    EDIT: deduplication is absolutely not a thing yet. I don’t know if it’s still on the roadmap.

    EDIT: Erasure coding is deffo implemented, however.


  • Badabinski@kbin.earthtoLinux@lemmy.mlHyprland is now fully independent!
    link
    fedilink
    arrow-up
    62
    arrow-down
    4
    ·
    edit-2
    4 months ago

    What if you need to file a bug? What if you have a question on the config that’s not easily answered by the docs? If you never, ever find bugs and never, ever have questions, then sure, separate the two. There are genuinely people like that, but they’re not common. If you’re one of them, then I’m genuinely glad for you.

    My opinion is this: You use software. You don’t use people, but you sure as hell rely on them.





  • The other person may have responded with a fair amount of hostility, but they’re absolutely correct. I run Kubernetes clusters hosting millions of containers across hundreds of thousands of VMs at my job, and OOMKills are just a fact of life. Apps will leak memory, and you’re powerless to fix it unless you’re willing to debug the app and fix the leak. It’s better for the container to run out of memory and trigger a cgroup-scoped OOM kill. A system-wide OOM kill will murder the things you love, shit in your hat, and lick your face like David Tennant licked Krysten Ritter.