Tell me more ×
Answers OnStartups is a question and answer site for entrepreneurs looking to start or run a new business. It's 100% free, no registration required.

I run a business developing my own software that I license out, but also coding projects for businesses at hourly rate. So clients employ me as a contractor to do this.

Many of these projects are web applications and have similar consistent features, such as a user login, input validation, server side request handling and so on.

Most businesses actually don't do any sort of contract, and to my understanding this means I hold the copyright.

So if one company that I code a web application for wants me to sign a contract stating that they own the copyright, how does that effect things in this situation? I'm a big fan of re-usable code for generic things, and even if I didn't re-use it, the code would end up looking the same. This is the part that becomes confusing.

If I have code that is common and not top secret application logic, how can I deal with this situation with multiple projects for different clients?

Thanks!


p.s. I know the end result is to seek legal advice, I just want to try and be informed first.

share|improve this question
You should read this: copyright.gov/circs/circ09.pdf – Finding Trouble Dec 7 '11 at 18:38

3 Answers

up vote 1 down vote accepted

Quite apart from seeking IP-related legal advice I would make the following observations (this is what I do):

  • If you bring to the project code that will reduce the time for development, state this up front
  • Keep the generic and the project-specific code separate
  • State that the generic code is your IP but grant the client a non-exclusive license to do whatever they want with it
  • Let them know that the project-specific code is theirs and you won't use it in any other project

There are standard licenses and contracts that you can obtain and sign, but these are the basics. I find that smaller companies are fine with this as long as everything works and that they can do what they like with the code. Big companies can often have unwieldy procedures so they can be harder to deal with, but in the end you should be able to get there.

share|improve this answer
Thanks for the reply. Let's say they were to say no, we want you to start from scratch even if it takes more time, so that they own all of the code. In the end I will be writing code that does the same function (say a basic login script), so how does that work with copyright? Can you still copyright generic aspects of an application like that, and if I re-write it for them but it's incredibly similar, is that any different from just reusing my code in the first place? – Roger Nov 28 '11 at 14:06
If the date on your code (and you have this documented or recorded somewhere) is prior to the code you write for the client then you will be OK. If you are rewriting from scratch there is no need to duplicate everything you already have, so don't go out of your way to make it look identical ;-) – Misha Nov 28 '11 at 14:37

First, I am not a lawyer, so yes, do consult a lawyer for legal advice.

Things like authentication are pretty standard these days. Much of that type of code is probably already found in a repository. If you utilize this, since you are not the owner of the code, the company you develop for technically cannot own it. All they own is the custom development, which may include the implementation of business logic or the way in which you tie pieces of code together.

In fact, if you're not using GitHub, check out their repositories.

Along those lines, you might consider creating your own code repository for all those consistent features using GitHub, and release it using MIT or creative commons license.

Otherwise, make sure you don't sign any contracts that give up your rights to code you've developed but may wish to reuse for future projects.

share|improve this answer
Yeah I'm leaning towards just writing things from scratch, using jqeury instead of my on javascript library and things like that, so that my own framework isn't effected. Might be the safer path at this stage. If they want I'll rights i'll see if I can get an exclusion in there to cover general aspects like "Server connections and response", "Database connections and response", "Login System" and so on. – Roger Nov 28 '11 at 23:25

I do the same and i added a few notes to my contracts, but this is for sure specific for each country.

"cost-sharing" is something every customer understands and agrees to. Another alternative is that you sell Modules for a fixed price like a Login Module, CMS Module etc., and just bill the domain specifc stuff based on an hourly rate. The domain specific part can be exclusive, but here it depends where the main knowledge comes from. If its not customer internal knowledge i would limit exlusivity to maximum of a year.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.