15
Which software license to use for personal projects?
(lemmygrad.ml)
Welcome to the Lemmygrad programming community! This is a space where programmers of all levels can discuss programming, ask for help with problems, and share their personal programming projects with others.
Rules
That's the whole point of the copyleft. It uses copyright against itself so that it remains free for all of time. Licensing under the GPL is exactly the same as saying “this isnt my code, it is OUR code, comrade!”. That's the whole point.
i know of copyleft, but im not sure i like MIT(+other lenient licenses) or GPL. MIT makes my code free for the taking for any big corpos (not that im cool enough for that to happen, but hypothetically) and i'd like to inconvenience them at every opportunity. yet GPL would be a pain for normal smaller devs who just want to use or modify my stuff without license headaches.
but i'm probably overthinking it, aint nobody using my shitty ass code 🙃
You might want to use the LGPL then, which would allow your code to be linked dynamically without requiring the calling code to be GPL. That would allow your code to be used across most (but not all) platforms.
There's also the option of dual licensing. Qt is a large project that does this. You can use it for free under the GPL, but they are also willing to license it under a commercial license for users who can't/won't obey the GPL (embedded systems).