up vote 17 down vote favorite
4
share [g+] share [fb]

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.)

link|improve this question
show 1 more comment
feedback

68 Answers

Not so much of an ethics issue, but about arrogance: Don't assume your program is the only one running on the client machine. You don't have to optimize everything, but you should try to make the program efficient and stay away from running some background task that's drinking up 10% of the CPU.

link|improve this answer
feedback

Do not underestimate the time it will take to complete a task.

Bad estimates are a fact in programming. We have a responsibility to give realistic (even pessimistic) estimates for the time it will take to complete a task. We have a responsibility to improve our accuracy in making estimates.

If you are unable to give an accurate estimate, do not give a guess. You must give a reason, citing the unknown factors in the task that prevent you from making an accurate estimate.

link|improve this answer
feedback

Remember that you make a living from people paying for software and reciprocate. Stop ignoring the nag messages in your shareware and shell out the piddly $20 bucks already!

link|improve this answer
feedback

Commitment to excellence.

(In other words avoid mediocrity and half assed solutions at all costs)

link|improve this answer
show 3 more comments
feedback

Don't help to kill people.

link|improve this answer
feedback

Care about the end users

(Do not deliver ugly, incomplete, unusable software)

link|improve this answer
feedback

Write code you would want to use yourself.

link|improve this answer
feedback

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|improve this answer
show 3 more comments
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

@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|improve this answer
feedback

to make this problem solvable, you would have to separate the ethics involved in programming from what the progamming is going to do. For example, there is programming involved in targetting a nuclear missile, as there is in a medical diagnosis application.

A programmer is a cog in very large group of people coming together to create a solution for a problem, whether it is how to make a bomber invisible to Radar or making a website work well for a client.

Professional ethics would have to start with being honest to your client during the entire process of developement.

link|improve this answer
feedback

Borrowing from Hippocrates ... First, do no harm.

That is very general, but ethical rules should be general. It has a lot of "sub-rules":

  • do not write code intended to break machines or systems
  • write what is requested and required and no more.
  • abide by the license terms of code written by others

.. and so on.

link|improve this answer
feedback

Don't enter into a relationship with employers or clients who are engaged in unethical activities. You are responsible for who you work for. (See this question.)

link|improve this answer
feedback

Report security vulnerabilities to the person responsible for that system, library or application. Never exploit a security hole to "get their attention" or demonstrate the problem, unless formally and contractually authorized to do so by the responsible party.


Note: tread carefully because there may be legal complications.

link|improve this answer
feedback

I encourage my cohort of students to formulate THEIR OWN CODE OF ETHICS based on existing ones (i.e. ACM, IEEE, BCS etc.). Here's an example. Also I ask them to write their thoughts on current ethical issues in IT so there's documentation that they actually thought about these ethical issues (it's released under a by-nc-sa 3.0 Creative Commons license). Here's an example - you'd be surprised what students nowadays think about the contemporary ethical issues in IT that face them everyday.

link|improve this answer
feedback

Assume every line of your code is broken until you tested it. But don't assume it isn't broken after you tested it.

link|improve this answer
feedback

"It works on my machine" is not an excuse. Corollary: "Could not reproduce" is not a valid reason to close a defect. It's a reason to look harder.

(This obviously does not apply for software you write for yourself.)

link|improve this answer
show 1 more comment
feedback

When it comes to code, prefer readable over concise.

link|improve this answer
feedback

Reading code is inaccessible to most people, so it definitely needs to include something about documentation agreeing with implementation.

link|improve this answer
feedback

Don't give bad code out of your hands.

(People might read it and get wrong ideas)

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
show 1 more comment
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Have time for people (colleagues) AND code.

link|improve this answer
feedback

Write self-documenting code and use appropriate comments.

link|improve this answer
feedback

Don't ship a flawed project without a list of known bugs.

link|improve this answer
feedback

when committing to source control, always include a comment

link|improve this answer
feedback

Don't be too damn clever for your own good. Write code that is appropriate to the organization that you are working in, in terms of complexity and elegance.

There have been times when I've written bits that I thought were incredibly elegant, but that I soon realized were over the head of my peers (not trying to be arrogant, just realistic.) Although the code was well-commented, included unit-test, etc, I became apparent that the guys I was working with just weren't getting it. I ended up breaking it down, throwing away some of the speed and elegance, but getting something 10x more maintainable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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