vote up 19 vote down star
3

Recently there was an ethical question asked, but I'd like some input on what might be included in a comprehensive code of ethics. I'm thinking of something along the lines of the Hippocratic Oath that professional software developers would hold to.

We are in a relatively new profession, so there's likely to be debate about what should and should not be included in an ethical code. There are published ethical codes, such as ACM's and GNU's, but there are deep philosophical differences among programmers. Perhaps we can't find a definitive answer for how programmers should behave, but we can get some consensus on what most of us feel is right and wrong.

Please limit yourself to one point per answer so we can vote up or down. Ideally, the most important ethical considerations will rise to the top and less important clauses will stay at the bottom. I'd say it's fair game to "borrow" points from other published lists and get inspiration from the ethics tag. Please cite any sources. (Inspired by MagicKat's answer.)

flag
show 1 more comment

67 Answers

vote up 5 vote down

Here's the unifying theory:

Do unto others as you would have them do unto you.

(respect the original author's white space unless you are the new owner, don't release something you wouldn't use, leave the code at least as neat as you found it, don't break the build, and all the other applicably stuff already listed)

link|flag
1  
A solid (gold) suggestion. It's interesting to consider how it would apply to situations where there are multiple "others" such as the DRM issue. A developer who is stuck between an IP owner and users would need to address the concerns of both parties, I'd think. – Jon Ericson Sep 17 '08 at 20:41
vote up 1 vote down

@Echo

Lots of tools that could be used for hacking and other malicious intents could also be used for good. Things like WireShark, Debuggers, and even password crackers can have both legitimate and malicious uses.

link|flag
vote up 13 vote down

I like the IEEE CSDP: Software Engineering Code of Ethics and Professional Practice.

Here are items that I found particularly important:

  • 1.01. Accept full responsibility for their own work.
  • 1.08. Be encouraged to volunteer professional skills to good causes and contribute to public education concerning the discipline.
  • 2.01. Provide service in their areas of competence, being honest and forthright about any limitations of their experience and education.
  • 3.04. Ensure that they are qualified for any project on which they work or propose to work by an appropriate combination of education and training, and experience.
  • 3.09. Ensure realistic quantitative estimates of cost, scheduling, personnel, quality and outcomes on any project on which they work or propose to work and provide an uncertainty assessment of these estimates.
  • 5.08. Not unjustly prevent someone from taking a position for which that person is suitably qualified.
  • 7.02. Assist colleagues in professional development.
  • 7.03. Credit fully the work of others and refrain from taking undue credit.
link|flag
vote up 1 vote down

Write code that is self-documenting (or self-describing).

link|flag
vote up 1 vote down

Always keep your code in some kind of version control system with comments!

link|flag
vote up 18 vote down

Programmer ethics? How about this:

It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter. - Nathanial Borenstein

link|flag
show 1 more comment
vote up 16 vote down

Never use your code for personal job security.

Anything that tends to ensure that you are the only one who can maintain the code falls into this category: lack of comments, misleading comments, obfuscation, poor variable names, misleading function names, functions with multiple side effects, easily confused variable names (simple and simp1e), subtle coding tricks, secret back doors, etc.

link|flag
show 1 more comment
vote up 0 vote down

Have time for people (colleagues) AND code.

link|flag
vote up 1 vote down

Under no circumstances shall an ethical programmer create of or assist the creation of DRM

Response to comment: That's not DRM that's security software for privacy protection.

link|flag
show 3 more comments
vote up 12 vote down

Program as if the next developer that will maintain your code will be a crazed maniac with an affinity for sharp objects and knows where you live.

link|flag
vote up 0 vote down

Involve the user in the process. Ultimately, it's their tool your building.

link|flag
vote up 0 vote down

Use what you have been building, as if you were just a user

link|flag
vote up 0 vote down

Leave each file at least as neat as you found it.

link|flag
show 1 more comment
vote up 1 vote down

Write code you would want to use yourself.

link|flag
vote up 7 vote down

Solve the problems that matter. Let go of the ones that don't.

link|flag
vote up -4 vote down

This topic seems to be a little bit strange for me.
The ethical question you giving an example is clearly legal question and not ethical (don't steal can lead to theological discussion, but not ethical). And taking the code from employee is stealing (read your contract).
I can't think about single point in may daily work that i can consider as ethical (from professional point of view). May be only one "Do comment you code properly i.e no over commenting" :)

Response to the comment: The ethical can expend the legal and can not contradict. The question about taking code is clearly legal and if the law is gray in some point it's still legal. If legally you allowed to take code from work so what ethic question is here ? Just take it. I probably to cynical to this discussion.

Response to comment 2: You understand me very well and i don't care lose more points on this:). There is no ethic in our profession. There is good programmer and bad programmer (and the scale between). I can understand ethic for Doctors, Therapist etc ... In our case or you good programmer and you write good code or not. 90% of examples here define good practice in programming the rest is just naive.
Ok i think it's time to wrap it up. I'm done.

link|flag
show 3 more comments
vote up 1 vote down

Care about the end users

(Do not deliver ugly, incomplete, unusable software)

link|flag
vote up 0 vote down

Don't be cryptic in coding. Either use a clear variable or function name to explain what is going on or comment to allow people after you (or even yourself) to figure out what you were doing when you were trying to be clever.

link|flag
vote up 2 vote down

Know your user.

link|flag
vote up 7 vote down

On a technical front: Always worry more about the next time some human reads your code than when the machine reads it.

Making code a PC can read and execute is trivial, making code the next guy can pick up an run with in a reasonable amount of time is an art form that can take decades to master.

link|flag
vote up 2 vote down

Share your knowledge

(I don't mean open your source, or speak at usergroups but rather don't try to make yourself unfire-able by never telling anyone anything and writing code that's hard to use)

The British Computer Society has both a code of conduct and a code of good practice. The fun thing about ethics is, of course, they're all relative.

link|flag
show 5 more comments
vote up 22 vote down

Never ship anything you wouldn't use.

(I mean this from an interface/quality standpoint, not from a business use one of course. Thanks to Jon and Grant for pointing out the vagueness of the point.)

link|flag
1  
Unless it's software that you wouldn't use. (Custom software for another company for example) – Grant Sep 17 '08 at 19:43
show 1 more comment
vote up 24 vote down

Consider the plight of future programmers (including yourself) when they come to your code. That clever hack you wrote won't look so clever years down the line when someone discovers it's buggy and impossible to understand.

link|flag
2  
That "someone" includes yourself, BTW. Oh, and it doesn't need years. – Jörg W Mittag Sep 18 '08 at 1:28
show 3 more comments
vote up 3 vote down

Expect the unexpected

(In other words, design for robustness)

link|flag
vote up 1 vote down

Don't help to kill people.

link|flag
vote up 6 vote down

Respect your User! Give them solutions that address their problems and work consistently.

link|flag
vote up 0 vote down

Don't give bad code out of your hands.

(People might read it and get wrong ideas)

link|flag
vote up 3 vote down

Do not lie to your customers/clients/boss

(In other words, avoid the it's 90% ready trap, and tell when there have been unexpected problems)

link|flag
vote up 16 vote down

When working with existing code, always leave the code cleaner than when you found it.

link|flag
1  
This is a good one, but you need to remember not to change any code when doing this or you may break something. Remember, if you were the last one editing the code, and something breaks after your update is applied, you broke it. period. – Chris Pietschmann Sep 18 '08 at 21:45
show 1 more comment
vote up 3 vote down

Stay legal - ie. do not break licensing stuff and sell a product as totally your own if some library you used requires mentioning.

link|flag

Your Answer

Get an OpenID
or

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