this post was submitted on 04 Jun 2025
1494 points (99.7% liked)

Technology

70995 readers
3606 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] JackbyDev@programming.dev 3 points 1 day ago (2 children)

CC0 is a horrible thing to use for software. It seems great, but it specifically does not give patent rights. Compare that to MIT which implicitly does so. CC0 specifically says it does not.

[–] LorIps@lemmy.world 2 points 1 day ago (1 children)

The US government doesn't (to my knowledge at least) have copyright protections so MIT wouldn't be possible. BSD 0-Clause is just better because e.g. Austria doesn't allow you to cede copyright to the public domain and CC0 directly mentions the public domain in the terms of the license.

[–] JackbyDev@programming.dev 1 points 1 day ago

Interesting, SPDX does not list 0BSD as FSF approved, but FSF does approve it. This isn't the first problem I've seen with SPDX's list. They say CC0 is FSF approved but FSF only says it is approved for things besides code.

https://www.gnu.org/licenses/license-list.en.html

https://spdx.org/licenses/

[–] Landslide7648@discuss.tchncs.de 1 points 1 day ago (2 children)

Could you explain why this is bad? Software patents aren’t a great thing, are they?

[–] JackbyDev@programming.dev 1 points 1 day ago* (last edited 1 day ago) (1 children)

Correct. They're bad. And if someone releases code under CC0 that has patented stuff in it you may be liable for using their patent without permission because CC0 says in section 4a,

No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.

Compare that to MIT which is considered to implicitly grant patent rights by saying you may deal in the software without restriction. Apache specifically gives you explicit patent rights in section 3.

Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

So the problem is that CC0 in it's public license fallback specifically says that it does not grant patent rights.

CC0 is a trap for software. Please avoid it. Please encourage others so avoid it.

To the extent of my knowledge, the only public domain dedication with permissive license fallback that is approved by both FSF and OSI is the WTFPL. Which is also a crayon license. Public domain is a weird concept and not all jurisdictions have it and not all jurisdictions allow you to manually put things into it. This is why they need the permissive license fallback. You're better off using a well known and well understood permissive license.

[–] Landslide7648@discuss.tchncs.de 1 points 16 hours ago

Thank you for the through explanation! That was very helpful

[–] Shayeta@feddit.org 1 points 1 day ago

Correct. You release something under CC0, someone else sees it, patents it, and sues you.