Synopsis
Replacing repetitive informations by abstractions, such as functions. (or as I call it, DRYing the Code)
Problem
Many parts of the code are
- Written twice or more (such as Open in Beeper/Send Messages, which are written twice each.)
- Vague codes, (such as MDL2/Segoe Fluent Icons unicodes.)
Resulting in messier, hard-to-read code, which affect long-term maintainability.
Proposed Solution
Code Refactor, by separating functions to defined, reusable function. (Which is a DRY Principle, which is to replace repetitive informations by abstraction.)
Synopsis
Replacing repetitive informations by abstractions, such as functions. (or as I call it, DRYing the Code)
Problem
Many parts of the code are
Resulting in messier, hard-to-read code, which affect long-term maintainability.
Proposed Solution
Code Refactor, by separating functions to defined, reusable function. (Which is a DRY Principle, which is to replace repetitive informations by abstraction.)