Well...

  1. Ensure the source will always be available, in the required form, if needed:
    1. Use CVS so you can rollback the code to any point.
    2. Implement proper backup proceedures taking into account everything from media failure to natural disasters.
  2. Ensure problems can be fixed in an acceptable time frame.
    1. Create a modular design.
    2. Clearly specify every aspect of the code.
    3. Document it well (both high-level user docs and comments).
  3. Take steps to prevent problems in the first place:
    1. Design everything in detail first.
    2. If possible, audit and use existing tested code.
    3. Write tests, then code.
    4. Refactor, refactor, refactor.
    5. Refactor.
  4. Remain paranoid.
  5. Pass off maintaining the code.
  6. Peace of mind (until the new maintainer bothers you ;)

So yeah, if you want peace of mind you'll have to find another job ;-).


In reply to Re: Peace of Mind by Anonymous Monk
in thread Peace of Mind by artist

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.