DRY Principles

Don’t Repeat Yourself is a common software design principle that we employ at Research Blocks. Whenever you find yourself doing a copy/paste of code and not changing much (if any) of the pasted code, consider creating a utility function or a new component to do the work. Here is an example from version 1.67 Front […]