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/)UR
Posts
7
Comments
831
Joined
2 yr. ago

  • Perhaps the baking process can change levels of B12 in the bread? Or maybe different kinds of yeast? It is a mushroom after all.

    I haven't really looked that much into myself, I have only ever heard (and read once on a vegan organization's website) that if you are vegan, you are strongly advised to supplement your food with B12 because it is difficult, if not impossible, to eat the needed levels of B12 on a vegan diet.

    I know it’s produced by some types of bacteria,

    Is bacteria part of the animal kingdom? I know mushroom to be a bit of both animal and plant. Reading about kingdoms now it looks like my knowledge on the subject is a bit dated.

  • The result would’ve been worthless trash because that’s all ai is.

    So an image created by an AI bad because it was created by an AI? Regardless of the the content?
    How about an image created by an AI and then worked on by a human?

  • I haven't looked at the code but I always assumed that println was a call to print with a new line added to the original input.
    Something like this:

     Java
        
    void print(String text) { ... }
    void println(String text) { this.print(text + '\n'); }