• 0 Posts
  • 9 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle
  • In my humble opinion, being monocultural as a developer is a path to obsolescence. Be T-shaped: know your specialty really well, but also a bunch of stuff more superficially.

    If you have a little hands on experience with Go on top of your Java expertise, you are imo more valuable to your employer. They may even be mid transition from Java to Go, where you would be very useful indeed.

    Besides, it’s just healthy to keep learning new things.


  • As a dev: for all their flaws, web apps are easier to distribute, portable, and have a lot of support in frameworks. They also require little infrastructure in most cases.

    As a user: web apps run without installing anything, are mostly portable between my browsers of choice, and run in a sandbox to protect my computer.

    Probably 90% of my needs can be served by a web app if it is well designed. If I can’t have a web app, I will look for a flatpak version and failing that I will look for it in my distro.



  • I have not been able to find the case again since. It was a local shop that built it from parts, so it was not a big brand. I didn’t pick the parts either, since I knew nothing about PCs at the time, and it showed lol.

    Edit: it was a white/beige mini tower. If I recall correctly, it was similar to a lot of cases at the time, with a black band across and a circular button on the right. The turbo and reset buttons were pink and teal in the shape of triangles. I purchased it in 1992 when I needed a PC for college.



  • I have had weird issues ever since upgrading in place from Fedora 41 to 42 also, but I have an AMD card. For example digikam suddenly stopped working unless I run it as flatpak or I force it to use the igpu. Smb4k stopped auto mounting and I sometimes have to try it a couple of times before it works. Random UI stuff would glitch and then be fixed in an update. Just odd stuff like that. I should reinstall fresh, but I don’t want the hassle right now. My games and other apps work fine.

    My only suggestion is to try forcing it to use the main GPU with an environment variable like DRI_PRIME. I don’t know what it is for Nvidia though.


  • First: you’ve done good, raising a kid that asks for your permission first.

    Second: realize that this comes from peer pressure, them wanting a space away from parental supervision. If you truly want to make your kids savvy about the Internet, you need to assume they will eventually encounter seedy places, run into assholes, and be exposed to things like bullying.

    Have a conversation: you will encounter these things. Your friends may be into them. But they can have bad effects and here is how you avoid it and how to deal if it happens to you. Talk about keeping private information private.

    Be open and non-judgemental. You want them to feel safe coming to you for advice.

    Be truthful and stay credible. Keep up with what’s out there, but don’t just buy into the latest Tiktok scare.

    Talk to your kids about stuff they found that was cool or scary.

    Embarrass them by using memes incorrectly.

    Setting up a mastodon instance may be cool at first, but their friends are going to think it’s lame with the supervision. You could still do it for a number of other reasons, but it won’t prepare them for the ugly Internet.

    Source: me, a parent.



  • folekaule@lemmy.worldtoSelfhosted@lemmy.worldWhat is Docker?
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 months ago

    I know it’s ELI5, but this is a common misconception and will lead you astray. They do not have the same level of isolation, and they have very different purposes.

    For example, containers are disposable cattle. You don’t backup containers. You backup volumes and configuration, but not containers.

    Containers share the kernel with the host, so your container needs to be compatible with the host (though most dependencies are packaged with images).

    For self hosting maybe the difference doesn’t matter much, but there is a difference.