Nicolas FränkelforApache APISIXapisix.hashnode.dev·Sep 5, 2024DRY your Apache APISIX configDRY is an important principle in software development. This post will show you how to apply it to Apache APISIX configuration. The DRY principle "Don't repeat yourself" (DRY) is a principle of software development aimed at reducing repetition of inf...30 likesconfiguration
Palanivel SundaraRajan GugaGuruNathangurupalaniveltech.hashnode.dev·May 31, 2024DRY - Don' t Repeat YourselfAs the name implies ,our code should not be repeated . Bad code - DRY Principle not followed public class Matrix { public static void main(String[] args) { int[][] matrix = { {1, 2, 3}, {4, 5, 6}, {7...design principles
Kemal Taskincontroversialarchitect.hashnode.dev·Feb 2, 2024The rule of threeEvery developer is a software architect. Every time we write code, we follow the design patterns, we decide on the design patterns, we take software principles into consideration, we weigh pros and cons, we aim towards a more maintainable and cleaner...98 readsabstraction
Mohd Asifmohdasifabid.hashnode.dev·Apr 13, 2023Ditch the Repetition: Unlocking the Power of DRY for DevelopersAs a developer, you've likely heard the term "DRY" being thrown around. DRY stands for "Don't Repeat Yourself," and it's a programming concept that advocates for code reusability and efficiency. In this blog post, we'll explore why a developer should...27 readsdry