this post was submitted on 24 Sep 2024
187 points (100.0% liked)

Programming

19546 readers
63 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 15 points 6 months ago* (last edited 6 months ago) (3 children)

Does that actually matter?
I'm asking because license stuff is over my head, but I'd like to learn about it more.

[–] [email protected] 48 points 6 months ago* (last edited 6 months ago) (1 children)

They basically want free labor.

[–] [email protected] 4 points 6 months ago (1 children)
[–] [email protected] 23 points 6 months ago (1 children)

Not necessarily. While of course in many many cases, open source is a volunteer effort, there's usually some implicit transaction going on. Whether that's improving the software for yourself and passing that on to others, being a business and improving a library or something you use that helps your project generate revenue, or even a straight up commercial transaction.

But in all these cases, the open source project can be taken by you (or others) and you can do whatever you want with it. In the case of Winamp here, you cannot do any of that. It would be different if they were paying for contributions. But they're not, so.

[–] [email protected] 2 points 6 months ago

Yeah. You're talking about 0.0001% of the users though. For everyone else it's "I don't want to pay for this".

[–] [email protected] 15 points 6 months ago (1 children)

If you only care about contributing improvements, no, it doesn't matter.

If you want to at least be recognized as an author, and be able to say "I made this", the license opposes that.

Waiver of Rights: You waive any rights to claim authorship of the contributions […]

I don't know how they intend to accept contributions though. I guess code blocks in tickets or patch files? Forking is not allowed, so the typical fork + branch + create a pull request does not work.

[–] [email protected] 7 points 6 months ago

Also, this isn't even compatible with copyright law in some countries. I.e here you can't give up authorship at all; you can only grant an irrevocable, perpetual license (that might even prohibit you from distribution yourself and such) but you'll always be able to say "I made this" no matter what their license says.

[–] [email protected] 8 points 6 months ago

The way I look at it is this: I want credit for the work I do, I should also be able to fork a repo that I work on, and I sure as hell don’t like giving up my rights if I can help it.

But others may feel different.