Skip to content

Why I use GNU GPL (v3+)

Posted on:November 12, 2020 at 12:00 AM

Because it’s great.

No seriously: I’ve seen LGPL, MIT (and BSD), AGPL, Apache (which are pretty great, not gonna lie), but GPL seems like the way to go!

Why licenses (skip this if you know what licenses are)

Being a developer, proprietary or not, you need to tell the user (or client) how they can use the software. Some (bad) people would want to leak your secret code. Others may want to steal credit from your open source (read: free) code. A software license is a file that inform the client what permissions they have over your software.

Basically, it’s a buncha text saying what you can do with this epic code.

TL;DR

Here’s a rundown on the licenses:

My choice

Now you’ve seen the options, here’s my choice (drumroll please)…

GNU GPL v3+ 😱

Why

When I write code (usually open source and hosted with ❤️ by GitHub), I don’t want proprietary companies benefiting (and profiting) from my code when I don’t.

When you license code as GNU GPL, you’re basically saying

Haha! Get rekt, proprietary hogs! You can’t use my code while other people can! And if you do, ya might as well go open source!

I believe that software should be free… as in freedom. You are free to distibute, use, and modify. Although if you want to fork any project licensed with the GPL (and make the forked code public), it must be open source GNU GPL (v3). Meaning you still have to do what I did. That’s one of the conditions.

In other words, I do not want proprietary companies having an advantage. They can’t use my library without making their app GNU GPL. 😝

Even if these licenses seems like there will be no cost, you technically can use it for commercial purposes (GPL at least). It’s just that it’s quite useless to do that: you have to make the code freely distributed where then some guy or girl could (and it’s totally allowed under GNU GPL) distibute a free copy with zero changes. Or as much changes as they like.

Like I said, any fork or copy also has to be GNU GPL (v3 or the same version of GNU GPL). I’m also pretty sure they’re not allowed to steal credit.

GNU GPL is to code as America is to guns: free as in freedom.

Conclusion

Currently, I have spent $0 dollars on the internet. I like that and want to keep it like that: we all benefit from free software. I want everyone to benefit from my code, but not in a way where I won’t get credit get cheated on.

For a GNU (new) DAWN! For freedom!

xkcd: 225

Thanks for reading!