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/)AL
Posts
1
Comments
3
Joined
2 yr. ago
  • Completely agree. I'm glad they felt comfortable branching out like this. Much better than just shitting out a bunch of Episode IXs or whatever.

    An analogue, I think, is how oddball Star Trek: Lower Decks is. That show 100% works for me, but it was clearly a risk

  • I actually also dislike almost all of the art styles, but I know that's a personal quirk, so I wasn't going to mention it :P

    I found both seasons (I'm a completionist, so I've seen them all) to be about the same as far as story quality, personally. Like maybe one good one each? I don't think season 2 had anything quite as cringe as the Tatooine rock band thing from season 1 though haha

  • Docker @lemmy.world
    alloca @lemmy.world

    How to lower priority of container

    Hi everyone!

    I run a few low-resource-usage containers on a home server that also has things that run directly on the metal. I'm starting to run a simple Docker container that just lets me run the Whisper speech-to-text engine. That container basically uses all of my CPU power for several hours, which is fine, but I want to make sure it's not starving other processes of CPU time.

    In a non-Docker setup, I'd just nice the program, and that'd be it, but that doesn't seem to work in this context. I've found this Stack Overflow post that recommends using the --cpu-shares flag with docker run, but I haven't been able to find out if that allows you to deprioritize the container relative to everything else using the CPU (such as non-containerized tasks) or just relative to other containers.

    Any help would be appreciated!