When developing a new system, it is important that all team members work to implement methodologies with improve processes.
DRY is a development methodology aimed at making code concise and easy to maintain.
Staff Summaries
Member A
There are many different definitions of this concept which take it to varying extremes. However, generally I would personally sum it up as “don’t repeat areas of logic which are prone to change, need frequent maintenance, or a likely to need to be used in a large number (> 2) of places”
Prone to change
These are areas of code which contain business logic such as pricing, rules, conditional modifications to data and the like. For example if a 8% tax rate were to be being applied to orders in 12 different pieces of code and then the rate changed to 10%, 12 independent updates would be required including testing. Additionally, the chance of one or more of those instances being missed is very high especially if some instances exist in less used / less well-known systems causing difficult to debug errors in data
Need frequent maintenance
Generally, not repeating code makes it easier to read. While copy-pasting an if tree may make code easy to implement quickly when the time comes to change / add features, it can rapidly become difficult to read and debug. Splitting logical elements into separate modules can make code more readable and easier to unit test (Note: this does not mean that every operation should be a separate function. Only functions which have a logical separation from the parent operation)
Used in a large number of places
When implementing for example a data access layer, several operations occur in the same manner for many different models. Eg: Process the request -> Get Headers -> Check Authentication -> Get the data -> Parse the data -> Deliver the data to the user.
Shared processes should be aggregated into a standard “process” library wherever possible to the point where the foreseen desired ability for custom processes can be satisfied.
Finally, an advantage of breaking code up into more logical, shared blocks is it allows rapid switching out of a single layer without needing to retest the entire stack. If the inputs and outputs of the new module are unaltered, it can be used with confidence.
Member B
DRY is an abbreviation for Don’t Repeat Yourself. This is one of the rules that programmers should follow.
What is said here “don’t repeat” is information (not just code). It means managing paths and constants in one file, not implementing the same algorithm, and so on. In a broad sense, this includes automation and simplification of work.
Member C
Numerous web sources state DRY as “Every piece of knowledge or logic must have a single, unambiguous representation within a system”.
A general principle of programming in any language is code reuse. This is not an excuse to copy-paste the same code from one part of the code base to another. Instead try and make the same code accessible.
By copying and pasting code you are:
- Bloating the code base
- Repeating any bugs that may exist in the original code
- Decreasing the maintainability of the codebase
- Increasing redundant use of code
…all of which lead to technical debt which will come back sometime in the future for someone else to deal with.
Member D
- DRY Principles is the philosophy to avoid a duplicate of a development work.
- To be easier to understand codes and to maintain and simpler codes.