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 0 vote down

Have time for people (colleagues) AND code.

link|flag
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 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 1 vote down

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

link|flag
vote up 1 vote down

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

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

@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 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 0 vote down

Write self-documenting code and use appropriate comments.

link|flag
vote up -1 vote down

Always write your tests first, and never write new code that doesn't have a test already.

link|flag
show 2 more comments
vote up 0 vote down

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

link|flag
vote up 0 vote down

when committing to source control, always include a comment

link|flag
vote up 0 vote down

Use a consistent style within a file.
Which should also match the coding standard for the project.

If you are not the original author that means adapting your style to match the rest of the code within the file. If all the code within the file has a consistent style it (should) be easier to understand and maintain.

Also note there are exceptions to every rule.
Do not follow the standards just because. If following the standard makes the code unreadable adjust accordingly and document the deviation.

link|flag
vote up 3 vote down

When refactoring code don't leave the original code commented out beside the new code.

This is what version control is for.

link|flag
show 2 more comments
vote up 13 vote down

Pay for the commercial software that you use.

It's only fair that other developers are rewarded for their work if you expect to be rewarded in turn.

link|flag
vote up 2 vote down

For an example, look at the Australian Computer Society's Code of Ethics

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

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|flag
vote up 1 vote down

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|flag
vote up 4 vote down

The Software Engineering Code of Ethics and Professional Practice seems like a good place to start. It was developed jointly by the IEEE and ACM. As a software engineering major, I had to study the whole thing and write up my opinions on it; I won't bore you with that, but here is the preamble of the SECoE&PP:

PREAMBLE

The short version of the code summarizes aspirations at a high level of the abstraction; the clauses that are included in the full version give examples and details of how these aspirations change the way we act as software engineering professionals. Without the aspirations, the details can become legalistic and tedious; without the details, the aspirations can become high sounding but empty; together, the aspirations and the details form a cohesive code.

Software engineers shall commit themselves to making the analysis, specification, design, development, testing and maintenance of software a beneficial and respected profession. In accordance with their commitment to the health, safety and welfare of the public, software engineers shall adhere to the following Eight Principles:

  1. PUBLIC - Software engineers shall act consistently with the public interest.

  2. CLIENT AND EMPLOYER - Software engineers shall act in a manner that is in the best interests of their client and employer consistent with the public interest.

  3. PRODUCT - Software engineers shall ensure that their products and related modifications meet the highest professional standards possible.

  4. JUDGMENT - Software engineers shall maintain integrity and independence in their professional judgment.

  5. MANAGEMENT - Software engineering managers and leaders shall subscribe to and promote an ethical approach to the management of software development and maintenance.

  6. PROFESSION - Software engineers shall advance the integrity and reputation of the profession consistent with the public interest.

  7. COLLEAGUES - Software engineers shall be fair to and supportive of their colleagues.

  8. SELF - Software engineers shall participate in lifelong learning regarding the practice of their profession and shall promote an ethical approach to the practice of the profession.

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

Don't hold your users' data hostage.

See DataPortability.org

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

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|flag
vote up 0 vote down

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|flag
vote up -1 vote down

Never break a public interface.

link|flag
vote up 0 vote down

Bill hours honestly.

link|flag
vote up 0 vote down

We work within a technical industry, and whilst some of us like to believe that our work puts us in line with professionals like Doctors or Lawyers we have to admit that what we do is create software. We work to Business Aims and our goal is to complete a Project on time.

A Programmers Code of Ethics seems almost pompous to an outsider, so the only ethics I can really bring to the table are those that apply to other skilled jobs:

  1. Work to the best interests of your employer.
  2. Remain professional and diligent at all times.
  3. Respect and understand your clients.

Past that, there's really not that much we can really say. Everything else should really be down to the employer.

link|flag
show 2 more comments
vote up 4 vote down

Newton once very humbly wrote “If I have seen further it is by standing on the shoulders of giants”. This is very apt for developers as we rely on so many giants of our profession for almost everything we do; from the platforms on which we develop to the help we get from developers all over the world.

I can derive two codes of ethics for programmers from this:

  • Always be humble (Edsger Dijkstra wrote an entire essay on this)
  • Whenever possible, help your fellow developers and give something back to the community (let’s try to be the shoulders on which the next generation would stand)
link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 3 vote down

Don't use use your technical knowledge to violate the privacy of others.

link|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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