Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TA
Posts
10
Comments
302
Joined
4 mo. ago

  • Notice that it hasn’t amongst mainstream consumers.

    What? A niche technical hobby isn't popular among mainstream consumers? Wow!

    Mainstream consumers don't know words "Plex" and "Home Assistant" either. There are already products that target these people. And there are products targeted at technical people. We need diversity.

  • I for once can’t stand the idea of having my editor run inside a browser…

    Well, don't run it inside a browser then. There is no need to get agitated because of that option. But this is super useful for universities and other organizations that educate people. They can run these preconfigured IDEs for their students and execute the code on the same server, so that even if you have something like a Chromebook, you can participate in classes. This is what places like Harvard do, and this is how Microsoft introduces CS students to VSCode and other products.

  • Same. I like it that I can install Librewolf and some other software on Mint from Flathub instead of adding some obscure repositories with commands I don't even understand.

    Like with docker, this isn't healthy:

     bash
        
    # Add Docker's official GPG key:
    sudo apt-get update
    sudo apt-get install ca-certificates curl
    sudo install -m 0755 -d /etc/apt/keyrings
    sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
    sudo chmod a+r /etc/apt/keyrings/docker.asc
    
    # Add the repository to Apt sources:
    echo \
      "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
      $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
      sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
    sudo apt-get update
    
      

    Source: https://docs.docker.com/engine/install/ubuntu/