Changes between Initial Version and Version 1 of HowtoCollaborate


Ignore:
Timestamp:
Aug 9, 2010, 8:01:51 AM (14 years ago)
Author:
anabell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoCollaborate

    v1 v1  
     1Rules that you need to maintain in your mind before to do anything:
     2
     31. Rule of '''Modularity''': Bee simple and do a clean work. When things are plugged between them is a lot easier to maintain a compatibility and good structure of everything, also, a big gain of stability.
     41. Rule of '''Clarity''': Clarity is better than cleverness.
     51. Rule of Composition: Design  to be connected to other programs.
     61. Rule of Separation: Separate policy from mechanism; separate interfaces from engines.
     71. Rule of Simplicity: Design for simplicity; add complexity only where you must.
     81. Rule of Parsimony: Write a big program only when it is clear by demonstration that nothing else will do.
     91. Rule of Transparency: Design for visibility to make inspection and debugging easier.
     101. Rule of Robustness: Robustness is the child of transparency and simplicity.
     111. Rule of Representation: Fold knowledge into data so program logic can be stupid and robust.
     121. Rule of Least Surprise: In interface design, always do the least surprising thing.
     131. Rule of Silence: When a program has nothing surprising to say, it should say nothing.
     141. Rule of Repair: When you must fail, fail noisily and as soon as possible.
     151. Rule of Economy: Programmer time is expensive; conserve it in preference to machine time.
     161. Rule of Generation: Avoid hand-hacking; write programs to write programs when you can.
     171. Rule of Optimization: Prototype before polishing. Get it working before you optimize it.
     181. Rule of Diversity: Distrust all claims for “one true way”.
     191. Rule of Extensibility: Design for the future, because it will be here sooner than you think.
     20
     21These rules are from the ''Art of Unix Programming'' book by Eric S. Raymond, you can read the original and better explained rules [http://www.faqs.org/docs/artu/ch01s06.html here]