vote up -3 vote down star

Let's say I have a really good idea for a website service that also is very easy to implement. How can I stop a (better known) competitor from simply copying my idea and implementing it on their website?

Here's an example: Let's say I made a search engine as powerful as Google. However, I have a unique feature: I can dictate the search query by voice. Let's pretend that this is a feature that everyone would like (it isn't), enough that they would instantly want to switch to my service if they knew about it. Let's also pretend that there is some free perfect voice recognition software out there that makes it very easy to implement in a website. So I would end up with a search engine strictly better than Google in every way (all other things being equal). As I market this, and my site is gaining popularity, couldn't Google just copy my idea and implement their own version of voice recognition searching?

Remember, this example is in a universe where any developer could easily implement that voice idea. Is there a way to patent/copyright/trade-secret-ize just an idea? It's not the technology that I need to protect, since it's something very easily done in this fictional world. It's just the idea, the concept of the site, that makes it stand out from all other search engines. How do I protect that? Is it even possible?

flag
No, and this isn't a programming question. – MarkusQ Mar 31 at 20:11
Ask your lawyer if you think your idea needs patenting. – Elie Mar 31 at 20:12
Google already has search by voice. Try 1-800-GOOG-400 I think that was the number. And the answer to your question is, you don't patent it, you do it better and keep ahead of the bigger company. If you can't do it better than them, let them do it. – Bill K Mar 31 at 20:13
(That was SUPPOSED TO BE GOOG-411, not 400) – Bill K Mar 31 at 20:14
@Bill K- I think that was just an example – TStamper Mar 31 at 20:14
show 1 more comment

closed as not programming related by MarkusQ, Elie, Josh, Brian Knoblauch, Robert S. Mar 31 at 20:18

5 Answers

vote up 2 vote down check

Is there a way to patent/copyright/trade-secret-ize just an idea?

I think this is the question you're trying to ask. And here's an answer.

Trade Secret A trade secret is, by nature, something that has to exist in business. The most famous example being Coca-Cola's recipe. So without actually using the idea in business, you would be unable to receive trade secret protection for an idea. Even then, someone could reverse engineer the idea and use it without any repercussions.

Copyright No you can't copyright an idea. A copyright is only valid when it is fixed in a tangible medium. Since it's just an idea, it cannot be fixed in a medium.

Patent Yes, you could patent an idea. There's no reason why you have to have a working implementation of an invention for it to be eligible for patent protection. The idea does have to be reasonable and something that could be implemented. The problem with this approach is that a patent application must allow a person with reasonable skill in the art to create the invention. It might be difficult to do this with only an idea.

link|flag
Maybe we're using the term idea differently, but I can't patent "search using audio" -- only something like "search using audio where the audio comes from this type of input and is deconstructed into search terms using this mechanism and returns results that match in this way." – tvanfosson Mar 31 at 20:20
I agree with you there tvanfosson, but the example the author gave was only a hypothetical. An idea that broad would be struck down by the USPTO. – Jordan L. Walbesser Mar 31 at 20:22
vote up 4 vote down

You can't patent an idea, only an invention (or technique), i.e., an implementation or way of implementing an idea. Getting the patent on an invention allows you to sue for damages if someone uses your invention (or technique) without paying you licensing fees. If they merely take your idea and implement it using a different mechanism, there is no violation. Note that there is some debate about whether the awarding of patents actually follow these rules, but that's the way the USPTO explains it.

Patents protect inventions, and improvements to existing inventions.

Wikipedia has this to say about what is patentable.

The term patent usually refers to a right granted to anyone who invents or discovers any new and useful process, machine, article of manufacture, or composition of matter, or any new and useful improvement thereof.

link|flag
vote up 0 vote down

Sounds like you're trying to patent a linked list.

In other words, wouldn't you get upset if some guy patented how to embed a video in a webpage and then go and sue your tiny online store because he can beat you in a court case? But can't beat Adobe because Adobe has more money than him?

Basically - you can try. The patent office employs people in the field to see if the patent is "apparent" (or obvious, or some word like that, I forget their terminology). If you manage to slip it past them because they never heard of a linked list before, congrats, you've just broken programming.

link|flag
vote up 0 vote down

Well, patents cost money and time. If you get a provisional patent (that last up to a year) you get most of the protection with ALOT less cost. Copyright will not do you any good here, and just by making it public on a website you will lose any protections provided by trade secrets.

(As a note, I am not giving legal advice)

link|flag
A provisional patent gets zero protection unless a non-provisional patent is later filed, and that application is approved by the patent office. Getting a provisional application is only useful for establishing an earlier priority date. – Jordan L. Walbesser Mar 31 at 20:19
Aye, that is correct. You don't have to worry about someone 'taking' the idea, but you do have follow through with a patent application within that year. – JasonRShaver Apr 1 at 2:15
vote up -1 vote down

Only in Texas.

link|flag
Someone thinks that pointing out that Texas has a particularly lax interpretation of patent law is offensive? Texan patent law itself is offensive. – Pete Kirkham Mar 31 at 20:32

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