Is it immoral to use tutorials/code snippets when doing dev work for paying clients?
Posted by Lunarchid@reddit | learnprogramming | View on Reddit | 38 comments
This is more in relation to front-end web development, as that is my niche, but I guess this question can apply to every aspect of programming for clients.
I started learning to code websites last year, since then I have built a few for friends and consider myself pretty proficient in the front-end. However, I was building a website today for fun and thought "Wouldn't it be cool if these buttons had CSS animations" Or if a gallery was interactive etc. and immediately googled tutorials to learn how to make them or read code from others who have made them before. This is probably fine for my personal projects, but is it ethical or frowned upon to use this method when I'm creating websites for paying clients?
I am the type of person who prefers to do everything myself. I learned how to develop websites because I hated the limitations of website builders, I learned how to create my own vectors because of the vague licensing arrangements of free ones online. My friend says most programmers use tutorials, copy little snippets of code etc. and trying to do every little bit of dev myself is like trying to reinvent the wheel, but I always feel bad using things that didn't come from my brain (and don't want to get into deep trouble)
TLDR: When being paid for freelance work, is using code from tutorials frowned upon or infringing on any copyright? Would I get in trouble for doing so?
And if anyone has any good resources for learning to use CSS in more creative/animated type ways, that would be awesome too!
genlight13@reddit
Nope. Keep going.
Headpuncher@reddit
There’s a reason why the entire coding world is against code patents.
If code wasn’t reusable we’d run out of code by the end of the working day.
elroloando@reddit
You could also code your own languages, compilers, etc.
fractalife@reddit
If you didn't invent the transistor, are you really a programmer at all?
ChrispyGuy420@reddit
Transistor? I barley know her!
Headpuncher@reddit
La de da da de da, la de da da de da, la de de da de da, boom tish
Soft-Escape8734@reddit
"No code is built from scratch"
GregoryKeithM@reddit
yeah you can't code and then take someones code.
augurone@reddit
No
cgoldberg@reddit
Most people are too lazy to even read a tutorial and will just ask an LLM directly. But it's fine to copy/paste in any project. The only thing to be wary of is grabbing entire modules or packages without understanding the license, as that might be off limits depending on how you distribute the final product.
ruffiana@reddit
In the age of LLMs and co-pilot, if you're not copying boiler-plate code and adopting code for already solved problems into your own projects, you're going to fall way behind.
Just make sure you actually understand the code you're using. And if you're using an entire open-source library, be sure the license allows it and proper credit is given.
Ok_Negotiation598@reddit
It’s a GREAT question.. the answer is obviously NO in 99% of all scenarios i can imagine. Why? because most people don’t want pay for you to code something in assembler that can be written in three lines of and that will probably better optimized than I could do it manually.
As a developer, normally, the expectation for paid work is a functional result, not simply some code, if you can save time and effort on little code chunks and focus more on results, complete functionally and on-time delivery, almost no customer will (or should complain)
person1873@reddit
This is like an engineer asking if it's ok to use the Pythagorean theorem since they didn't derive it themselves from first principals.
As long as the code you're using isn't licensed in such a way to prohibit you using it, you're fine. Just make sure that you properly credit the author in the source code (aligned with the license it's distributed under)
Just be careful as GPL licensed code may require you to license your whole project GPL.
Legitimate_Plane_613@reddit
Can I math without proving 1+1=2?
person1873@reddit
Yes because that's one of the axioms in principia mathmatica
Meek_braggart@reddit
No
doesnt_use_reddit@reddit
This right here is a school based attitude -- it's immoral to cheat on a test. But as soon as you leave school, all that is just completely gone. It's immoral not to get help, because it may cost them more.
I'm all for education, 100%, but still, sometimes school rots our brains.
Bushwazi@reddit
F#ck no
Aggressive_Ad_5454@reddit
As a person who applies the GNU Public License to some of my work, I would prefer it if you applied that same license to your work if you copy mine. That’s what that particular license requires. There’s nothing much I can do about it if you copy my stuff without applying my license, but still, you’re doing an ethically marginal thing there.
When it’s up to me I use the MIT license which gives you more rights, but still asks you to give credit to the author you copied.
Many people and companies who contract for software don’t care whether it’s open-source as long as it meets their needs. Obviously commercial software companies don’t want the kind of trouble they’d get from the likes of rms and the Free Software Foundation if they try to privatize publicly licensed software, so they’ll probably scan it with Black Duck or something.
da_Aresinger@reddit
lol who cares? Deliver a good product, get paid.
That's the only thing that matters.
Well and don't commit IP theft i guess. But that's gonna be difficult to do by accident. Just remember to check licenses.
LuccDev@reddit
Nah, most of the stuff you find online is precisely made to be copy pasted shared etc. Those tutorial blogs are ere to drive engagement and meat to be shared
Usually, the really hard stuff of real value won't be accessible so easily
JulixQuid@reddit
Unless you can memorize all libraries, all the functions and use cases and keep track of that, version after version in real time while coding, it's necessary to go and constantly check documentation. What is important is you understand the logic and how things work. So you don't paste code that can harm your project or that solves it without you knowing what it does. ( That might redice the risk of using foreign code in your codebase)
Sol33t303@reddit
Morally, no IMO.
Legally, technically that code is unlicenced which means your not allowed to touch it.
ShockedNChagrinned@reddit
Someone is paying you to do a job.
If you code something which satisfies the job, you did the job.
If you needed help, asked around, used AI, tried and failed, but you did the job, then you satisfies the criteria.
spinwizard69@reddit
Yes a bit silly. A code snip is effectively a small library and you are not going to give up all the libraries a system supplies?
Pieterbr@reddit
I try mentor colleagues and the frustration they cause me by not asking questions. Then after two weeks of doing it all by themselves they hand over a product: here it’s done.
I and hand it back 5 minutes later: no it’s not.
Pale_Height_1251@reddit
Of course not.
mxldevs@reddit
but I always feel bad using things that didn't come from my brain (and don't want to get into deep trouble
So where do we find out more about the browser you built, the web language that you developed, etc?
Or is there a huge asterisk to the claim of "doing it yourself"?
YourAverageDev_@reddit
that's what you're suppose to do, hell git clone a project (well licensed) and just sell it to ur clients. too bad they don't know about github
taedrin@reddit
When I copy+paste any code, I usually leave a comment with a link to the original source. This is just good practice, as it leaves a bread crumb to follow if you need to revisit the code long after you have forgotten where it has come from.
As for copyright, check to see if the code has a license. For example, all user content on stack overflow is published under the CC BY-SA 4.0 license. If there isn't an explicit license then I usually assume that a code snippet published on the open internet is probably published for the general public to freely use.
All of that being said, a fair warning about copying tutorials: they are often grossly oversimplified and are frequently missing details that are important for a production environment. Things like authentication and TLS might be completely absent and it is your job to fill in those gaps.
djmagicio@reddit
Welcome to being a developer with an internet connection. You’re one of us now!
TerribleTodd60@reddit
There is nothing immoral about using code you find on the internet to enhance your projects. Software development is really an engineering endeavor so you want to create as little code as you can get away with. Plus, if the original programmers wanted to keep it a secret, they wouldn't have put it on the internet in the first place.
As you progress in your coding journey, make sure to post your code and help developers out when you get a chance and the great karmic tally will stay in balance. One thing though, make sure you understand what you are using. You can use publicly available code but you want to understand what you are incorporating into your code base. Otherwise you might end up with some unintended features (bugs). Good luck
Live-Concert6624@reddit
It is mostly 2 issues: copyright and functionality. Usually you will need to modify the code enough so that neither is an issue in the final product. As long as you do that there's no problem.
Copyright has allowances for fair use, so it's generally not a problem unless you are copying a large amount of code at once. In that case you should think of it like a library, and check the license works for your current project.
kittysmooch@reddit
actually its best practice to hit yourself in the head with a frying pan until you forget the snip so you can rewrite from a fresh mentalscape
oxgillette@reddit
I’ve seen code supplied by contractors which still had comments relating to other companies, and searching on those showed it was a literal cut and paste from a tutorial. If it had worked I wouldn’t have minded, except to possibly get the rest done in-house, but it was a costly failure.
jqVgawJG@reddit
A good developer never reinvents the wheel
g13n4@reddit
Majority of people who freelance just reuse the same components they already built because 90% of clients want the same functionality. You can do whatever ad long as your clients are happy with the result
mountainwitch6@reddit
its the norm- doing everything from your brain is insanity eventually. someone else will come along (or you will) and have to start understanding from scratch. using standard processes, and patterns that stand the test of time reduce that. readable, clear code is best and if they put it online, they want it to be used.
besides, thats what all the libraries you use are anyways. just more code someone else wrote