vote up 14 vote down star
7

If so, how do you organize it? Do you refer to it often? Are there ethical implications?

I have a bunch of tarballs lying around that I keep telling myself I'll organize some day, but I've yet to get around to it. And when I do sneak peaks at it, I find that it's mostly obsolete and not applicable to current technologies anyway.

But I can't bring myself to throw it away!!! :-)

UPDATE I'm not referring to stealing code here, and I would never intentionally break a law by transferring IP between companies. The tarballs that I mention were obtained while gainfully employed, usually to facilitate working from home. At present, I have code I wrote from 5 previous jobs, and 3 of those companies don't even exist anymore. Since I'm a web developer, there's very little proprietary code anyway. Mostly CRUD apps with sometimes clever UI or performance hacks, but nothing that wouldn't be considered state-of-the-art and used across the web. So my question is basically, how do you preserve/evolve that state-of-the-art on an individual basis? Thanks to those of you who already answered the question in that spirit, and my apologies for not being completely clear initially.

flag

60% accept rate
Very good question, especially for junior programmers. Looking forward to the answers. – MK_Dev Feb 19 at 1:33
Duplicate of stackoverflow.com/questions/81797/… and of stackoverflow.com/questions/550260/… – ChrisW Feb 19 at 1:51

22 Answers

vote up 8 vote down check

I do not save code I create for others, because it may infringe on copyright.

However, while programming I learn many things (techniques, API's, idioms, etc) which I save in a separate project consisting of example code. Every time I learn something new I either blog about it and/or create an example distinct from the code I write professionally.

This way I have reference material for myself without having to save proprietary code.

link|flag
vote up 2 vote down

Online e.g. Box with a private view in folders.

I don't keep everything - just the stuff I think I'll reuse - not the complete source - just some classes etc..

And yes, I refer to it often.

I find the techniques rarely become obsolete - only the language they are written in.

link|flag
Now thats OO at its best! – Lucas McCoy Feb 19 at 1:40
vote up 28 vote down

Nope. I consider it the intellectual property of that company.

link|flag
1  
That's right! :) – Maxim Feb 19 at 1:45
Yes. In the vast majority of cases this is true. Unless you have a specific written agreement (as a contractor) for example, that says the code you write is yours, it almost certainly belongs to the company. – DasBoot Feb 19 at 1:56
Code is not IP. Algorithms and Logic are IP. Code is copywrite, just like with books, and snippets without specific logic, say patterns and boilerplate fall within fair-use. – Robert Gould Feb 19 at 2:05
Uhm... copyright is a type of intellectual property. – chaos Feb 19 at 2:09
@Robert. Good point. If you just copy a few snippets that should be OK. But, if you copy a tar ball of the source then I believe that would get you into serious trouble. Intel sued one of its former employees for doing taking source code with him when he quit his job. – DasBoot Feb 19 at 2:10
show 6 more comments
vote up 2 vote down

According Charles Moore's guiding principles you don't need to keep all this code.
So - don't do this, as a good programmer , you always can write it again with more clever code.

link|flag
Thats a waste of time unless you wrote something with lost of bugs in it. – Lucas McCoy Feb 19 at 1:39
@Lucas, you can always improve, just start to try :-D – Avram Feb 19 at 1:43
Reminds me of Charles Moore and his 'write your own subroutines' approach when reimplementing Forth - codinghorror.com/blog/archives/… – Martin McNulty Feb 19 at 14:45
@martinm thanks for the link :) – Avram Feb 19 at 19:43
But Moore also brought his own card deck with Forth on it from job to job. (This was back in the punched-card days.) Sure he rewrote it over time, but that seems less relevant to this question. – Darius Bacon Feb 19 at 19:56
show 1 more comment
vote up 4 vote down

I do not keep the code (for legal reasons) but it happened few times that I had a "similar" problem to solve and I was obviously using the experience from the previous job - without actually referring to the old code though!

link|flag
vote up 5 vote down

There is a post about the legal issues of this. I really liked it. Personally I feel so long as you don't break any laws and it can save you time then it's great and one of the best features of an OO language.

link|flag
vote up 0 vote down

Most of the time code you wrote for a commercial application is a tiny piece of the puzzle. So copying the source files you have contributed to do not make sense when seen by themselves, especially after a few months.

I have now taken to copying (and sometimes blogging) reusable snippets of code, something that can almost stand by itself for future references. I keep OneNote open on my machine for this purpose, so I can add comments along with the code. The snippets come in handy even in the same job.

link|flag
vote up 1 vote down

Well the biggest hurdle are the legal ones - who owns the code? You or former employers (depends how much you signed away).

I guess the unofficial practice is common - in which case the code isn't shared.

For things I have been allowed to keep, I simply keep it all somewhere a text indexer can reach. Most of it really isn't that useful I find, as you learn over time. Its only for looking up tricks for a particular API you once used.

link|flag
+1 for recognizing that there is a legitimate legal question with a non-obvious answer. – David Thornley Feb 19 at 21:53
vote up 0 vote down

Nothing inherently wrong with keeping things for your own reference, just don't get yourself sued by reusing it for another employer or selling it.

The code itself from a previous job doesn't necessarily have much value outside of that job, but what you have learned while there, is often much more valuable to have than some code you wrote while there.

link|flag
vote up 2 vote down

I don't save the code.

However, if I find a bit of information that might be interesting to the rest of the community, I blog about it. I make sure not to leave any proprietary code or anything that might indicate where it comes from.

Normally, the code itself is not interesting. It's how you solved the problem that is interesting and that alone... is worth blogging about.

The kind of stuff that might be interesting to blog about is when you understand a part of the framework that you might have problem to remember again.

link|flag
vote up 0 vote down

In my case, I was allowed to keep sections of code for my portfolio. As far as ethics goes, it all boils down to the agreement between you and your former employer.

Now, as I look back at the code I had, I have the same reaction you do. Either it needs some serious rewrite, or is just so obsolete it can't be saved.

I would assume that it's safe to get rid of your old work unless there were a reason to keep that particular code around, like the portfolio. However, if it really comes down to it, couldn't you do something better with the knowledge that you've gained since then?

link|flag
vote up 1 vote down

The smartest thing that I've seen done is one programmer that convinced management to allow him to write the code on his own time using ideas from a previous job. They then paid him for the rights to use the framework. This was for a C++ ORM back before they were 'cool.'

He then was able to keep the rights to the code, and allowed them permission to use it.

While I've kept copies of the code I've written on disk (or floppy, if anyone remembers those) I've only refered to them once when i was contacted for a Y2K udpate, and have never used them in another job, and I doubt that I ever would because of legal concerns.

link|flag
vote up 0 vote down

There are two question that discuss this topic that you may want to check out.

As to the If so, how do you organize it?

As to the Are there ethical implications?

link|flag
He didn't ask if it was ethical; just how do you do it. – GuinnessFan Feb 19 at 2:38
@Guiness His first line asks 3 questions. One of which is "Are there ethical implications?" – lillq Feb 19 at 19:15
vote up 0 vote down

The best thing you can probably do is to save those nuggests of code that are helpful to someplace that is a code repository so that others can benefit from your work as well. planetsourcecode is one such place. In the pre-internet days, I kept a toolbox for code that mattered, but now Visual Studio will organize those things for you.

I am not too sure that you're bending any ethical rules so long as the what you're saving is rather atomic.

link|flag
vote up 2 vote down

Yes, I save my code from previous contracts. When I have to solve a problem I know I've solved before I look at my old code.

For example: "How did I use Reflection to get all the Properties of a class?." I could Goggle but since I know I did something like this (to serialize a class) in a previous project, I just look in that old project. I get the "Oh yeah, that's how I did it." and then continue coding. I will not under any circumstances copy and paste any of my old code if it belongs to a client another client.

link|flag
vote up 1 vote down

Depends on the company. I still have some code I wrote at a previous job because it was directly related to my (still running) Ph.D when i resigned. Of course, the Ph.D was sponsored by the company and the code was theirs but it would have been impossible to carry on without it because it was the result of a couple of years of research and investigation.

link|flag
vote up 0 vote down

What a great question! Source code can be copyrighted, but can it be protected under a patent? As 'instructions', which are not patentable, it cannot, but the patent office is looking into this issue.

link|flag
vote up 0 vote down

I always keeps reusable code i wrote ,

link|flag
vote up 0 vote down

I always keep code that is reusable or stuff I wrote off the clock on my own projects but have used in company projects..that I consider mine... but if I am bound by non disclosure or non compete then generally it stays with the company as it is theirs.

link|flag
How do you downvote this? "Do you save the code you wrote at your previous jobs?" is a subjective question, it's impossible for the dswatik to be "wrong". – annakata Feb 19 at 12:35
Why would anyone be wrong? This isn't a pop quiz – dswatik Feb 19 at 15:00
vote up 1 vote down

I doubt if it is legal keeping the code even for reference. Especially if you created it at work, on the company's hardware, and to keep it you'd have to make unauthorized copy.

What I'm sure is, that you should never copy & paste that code into new project. That would be creating derived work based on copyrighted material, thus illegal.

link|flag
vote up 1 vote down

I write a lot of stuff on my own time which I'll then use for problems at my day job. Going to the next job I'll bring the stuff I wrote forward. That kind of muddies up what I'm doing I guess, because there's no way I'm giving away the rights, but it does work for the companies benefit.

Taking a tree is clearly wrong, but taking generic methods (there's only so many times a man can write an XML->JSON transform) just seems like efficiency. It's not like it's unique IP, and it's not like you wouldn't just write the same thing again if you had to solve the problem again.

link|flag
vote up 0 vote down

I post samples of it on SO when answering questions :P

link|flag

Your Answer

Get an OpenID
or

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