should i put a disclaimer in my repos?
I am making a Public repo for the first time. It's not mutch , just a script to setup a podman container. But i am afraid of people messing up their devices and blaming me 😅. Do you guys think i should put a disclaimer in the main page of the repo? If yes, what kind of disclaimer should i use? I've never really dived into the legal side of things.
I think you should do more then just add a disclaimer. You should add a proper license. It protects you and allows others to build upon your work in a predictable way.
That and licenses are legally battle hardened and proven. A self written disclaimer is not.
I would recommend licensing your scripts under the GPL. This lets other people use it with the understanding that if they improve it they have to let others use the improvements too.
That and it protects you like you want. Particularly section 15 and 16.
Alternatively you could use the MIT or BSD licenses, but they don’t have the “share alike” clause, so I tend not to recommend them.
https://www.gnu.org/licenses/gpl-3.0.en.html
While it feels a bit overkill for what is essentially 60 lines of bash, i think it's the best option. As you have already said, they have been thoroughly battle tested, so there shouldn't be any problems. So yes, most likely i'll go with this.
Thanks mate.
You don't know if those 60 lines of bash are worth something to corporate america. Any code we write has value, how much value is rarely up to us.
A few months ago we had a guy playing a side project he did where he used a model to replace clothing on people so you could try something on and see how you looked. I begged him to add a license to his repo, and he still hasn't, because "it's just a bit of python". Like dude you don't see it but you just game Nordstrom or Macy's millions of dollars for free man! Guy didn't see it.
So yeah. Maybe it's just a helper script. Who cares. Adding the license is free and takes seconds, and who knows, maybe you solve a million dollar problem.
always, yes.
Do you have any example i can base myself off of? I genuinely have no clue in what to include.
just say primarily you are not responsible if something goes wrong as it's your script untested on multiple devices.
that being said if you code it terribly and it wipes the users drive then it is on you legally binding.
Thanks. I know that my code is bad, but it shouldn't be THAT bad. The reason why i am worried is because to use the program, the user needs to change a the UMA framebuffer size. And i am afraid of people changing for ex. The cpu voltage offset and nuking their device. All the program does in of itself should be fixable by just deleting the container. So i am not worried about it that mutch.
Yes, include a disclaimer and consider using the Peer Production License as well, which compells for-profit, non-cooperative developers to compensate you for using your work.
Just to be clear: If your script messes up somebodys device, no licence in the world will keep them from blaming you ;)