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
598
Joined
2 yr. ago

  • I always found pads and laptops to have a lot of overlapping use cases. Mostly everything I can do with my Galaxy tab I can perform better on my laptop. But reading/watching series is far superior on my Galaxy tab.

  • 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'); }