this post was submitted on 28 Aug 2023
670 points (91.5% liked)

Programmer Humor

32179 readers
58 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 1 year ago (3 children)

most new projects are in MIT?

[–] [email protected] 53 points 1 year ago (1 children)

My grades weren't good enough so I license most of my code Community College Licence.

[–] [email protected] 5 points 1 year ago
[–] [email protected] 9 points 1 year ago

That's certainly possible, but it's only lukewarm open-source. People can prefer spicy licenses.

[–] MooseBoys 0 points 1 year ago (1 children)

Apache2 is preferred nowadays.

[–] EnglishMobster 3 points 1 year ago (1 children)

What's the difference between the two? I've always used MIT because frankly I don't care who the hell uses my shitty code or where it winds up.

[–] MooseBoys 1 points 1 year ago* (last edited 1 year ago)

My understanding is that it’s basically the same as MIT with two additions:

The first is a clarification on what you’d probably already assume, that the license applies only to the code, not to trademarks that may appear in it. So if AMD submits a change with the token AMD_BOOT_SETTINGS, that doesn’t grant users of the code the right to pass themselves off as AMD.

The second is a guard against patent trolls, and basically says “If you sue anyone for their use of this code, your rights under this license are revoked.”. This helps prevent a malicious actor from filing a patent, submitting code to a lib that implements the patent, and then suing the other users of that lib for patent infringement.

The net result in my experience is that it doesn’t care to most people, but private industry tends to be more comfortable with Apache2 than MIT. So if you want to increase the odds of more people using and contributing to your lib, use Apache2. If you want to almost guarantee that private industry won’t use it, use GPL.