Contribute to projects

From VrlWiki
Revision as of 14:03, 22 April 2010 by Brad Berg (talk | contribs) (New page: When working on existing projects be sure to coordinate with peers working with the same project. In particular make sure that changes you make do not adversely impact others. As you bro...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

When working on existing projects be sure to coordinate with peers working with the same project. In particular make sure that changes you make do not adversely impact others.

As you browse existing code this is a good opportunity to make minor changes to make the code more readable. Reformat code that is cluttered or is not evenly lined up. As you learn how the code operates add comments so the next person does not need to reverse engineer it again.

If the project does not have any tests then it is a good idea to add some. This way after you can see that your changes did not have damaging side effects. A simple smoke test is a reasonable start and will catch obvious errors.