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/)QU
Posts
41
Comments
1,680
Joined
2 yr. ago

  • Yeah I did read their Readme, unfortunate to see it end like this, but it's been super good so far and it still is!

    work around the issue by pinning

    Oh I didn't know about the pinning functionality, I'll look into it, thanks!

  • Selling is outside the scope of the licence, you can do whatever you want with monetisation, be it free or paid-for.
    But any one person that uses your GPL if local, AGPL if local or through a remote service, has the right to request you a copy of the code and you have an obligation to comply and provide it

  • Copyleft protects the freedom of the user, regardless of who is the developer, I think that is way more important if what we want is to make software for humanity rather than pragmatic business choices.
    It is a point of what you regard as real freedom, do you wish to eventually lock in your users or let who might fork/take over your project do that?

  • Not exactly, because n commits will have been squashed into one, so making the edit would lose the reference to the originals which should have been squashed with other commits, visually maybe this helps:

     
        
    A (pick) -> B (squash) -> C (squash) -> D (pick)
    
      

    When it should have been:

     
        
    A (pick) -> B (squash) -> D (pick) -> C (squash)
    
      

    I had just created A+B+C, then realised C should have been out