How To Share Protected Code?

7 replies
How do I share code with programmers that are applying for a job and protect the code so they can't right click and copy the code and steal it?
#code #protected #share
  • Profile picture of the author SJL
    Well, what ever you do, if they are professional coders, the can decrypt the code and since that's basicly what you are looking for, you will need to find another way.

    You might want to look into NDA's (Non-disclosure agreement - Wikipedia, the free encyclopedia), but honestly that should be written by a lawyer and even then there are loopholes.
    {{ DiscussionBoard.errors[9456035].message }}
  • Profile picture of the author RobinInTexas
    Originally Posted by Dave90210 View Post

    How do I share code with programmers that are applying for a job and protect the code so they can't right click and copy the code and steal it?
    It's not possible to prevent right click. It's even more difficult to stop someone from stealing code.
    Signature

    Robin



    ...Even if you're on the right track, you'll get run over if you just set there.
    {{ DiscussionBoard.errors[9465507].message }}
  • Profile picture of the author GeneralLedger
    There is a script available free from dynamic drive: Dynamic Drive DHTML Scripts- Disable Select Text script

    This prevents people from selecting text, which, by extension, also prevents them from copying and pasting.

    But, as others have said, if these are programmers and they really want to steal your code, they will steal your code. The above script can be circumvented by simply inspecting the source or page element. Or if they are really committed to stealing it, they could just print it or take a bunch of screen captures and run some character recognition.
    {{ DiscussionBoard.errors[9465615].message }}
    • Profile picture of the author tanerax
      Originally Posted by GeneralLedger View Post

      There is a script available free from dynamic drive: Dynamic Drive DHTML Scripts- Disable Select Text script

      This prevents people from selecting text, which, by extension, also prevents them from copying and pasting.

      But, as others have said, if these are programmers and they really want to steal your code, they will steal your code. The above script can be circumvented by simply inspecting the source or page element. Or if they are really committed to stealing it, they could just print it or take a bunch of screen captures and run some character recognition.
      As a programmer I would just run curl and download the source directly to a file, open it in my favourite editor. It's very difficult to protect against anything from being copied that is html, css, javascript.
      {{ DiscussionBoard.errors[9466086].message }}

Trending Topics