Rafael dos Santos Miguel FilhoforThe Pragmatic Engineerthepragmaticengineer.hashnode.net·Aug 23, 2022Discover the significance of the Don't Repeat Yourself principle.It’s not the first time, and will not be the last, that I have commented on this principle that surrounds software development. In another article I talked about Don't Repeat Yourself and we went through some examples in code. The goal of this articl...Discuss·21 likes·125 readsThe Pragmatic Engineerdry
Rafael dos Santos Miguel FilhoforThe Pragmatic Engineerthepragmaticengineer.hashnode.net·Aug 23, 2022What is the DRY principle?These words in the subtitle refer to DRY (Dont repeat yourself). But DRY is not just about not repeating code that looks the same, it is about knowledge within the system. This raises an important question: what is a piece of knowledge? We can define...Discuss·20 likes·58 readsThe Pragmatic Engineerdry
José Pablo Ramírez VargasforThe Discipline of Codingwebjose.hashnode.net·Nov 12, 2022Do Yourself a Favor When Writing Connection Strings In ConfigurationHeredia, Costa Rica, 2022-11-12 90% or more of the developers will just take the usual, simplistic approach of having a ConnectionStrings section in the configuration appsettings.json file and go with that. Why am I calling it simplistic? Because ...Discuss·6 likes·85 readsentity framework
Katie SmithforInda Knowindaknow.hashnode.net·Apr 20, 2023DRY: Don't Repeat YourselfWhen it comes to coding, redundancy is the most frustrating thing, other than bugs or your code breaking of course. I have struggled with this myself a little, especially when just going through the motions of coding, all you want to do is get your c...Discussdry
Mohd AsifforThe Black Rivermohdasifabid.hashnode.net·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...Discussdry
Birnadin ErickforFor Your Infobirnadine.hashnode.net·Mar 24, 2023Day 28 & 29: Refactoring the HellTLDR; I made so many code smells due to time constraints, in this article I go over how I refactored/santify the repo for further development. I highlight few areas and my approach. If you find better approach, comment your voice 👍. Short log is pub...DiscussCreating birn.ccNext.js
José Pablo Ramírez VargasforThe Discipline of Codingwebjose.hashnode.net·Nov 12, 2022Do Yourself a Favor When Writing Connection Strings In ConfigurationHeredia, Costa Rica, 2022-11-12 90% or more of the developers will just take the usual, simplistic approach of having a ConnectionStrings section in the configuration appsettings.json file and go with that. Why am I calling it simplistic? Because ...Discuss·6 likes·85 readsentity framework
José Pablo Ramírez VargasforThe Discipline of Codingwebjose.hashnode.net·Nov 6, 2022Use Model Features to Speed Up Backend Development in a DRY MannerHeredia, Costa Rica, 2022-11-05 Ok, so this is something people that know me have been asking me for a long time, so I'll give you one of the best pieces of advise (and tutorial) you'll ever get for backend layered programming, modesty aside. NOTE:...Discuss·1 like·140 readsSOLID principles
Isaac MdzforIsaac Méndez Blogmdzcode.hashnode.net·Sep 12, 2022DRY PrincipleDentro de las recomendaciones que entrega el libro Clean Code, podemos encontrar un principio algo más moderno que complementa la sección de Métodos y funciones. Hablamos en esta oportunidad del principio DRY (Don't repeat yourself). Este principio e...Discuss·46 readsclean code
Rafael dos Santos Miguel FilhoforThe Pragmatic Engineerthepragmaticengineer.hashnode.net·Aug 23, 2022What is the DRY principle?These words in the subtitle refer to DRY (Dont repeat yourself). But DRY is not just about not repeating code that looks the same, it is about knowledge within the system. This raises an important question: what is a piece of knowledge? We can define...Discuss·20 likes·58 readsThe Pragmatic Engineerdry
Rafael dos Santos Miguel FilhoforThe Pragmatic Engineerthepragmaticengineer.hashnode.net·Aug 23, 2022Discover the significance of the Don't Repeat Yourself principle.It’s not the first time, and will not be the last, that I have commented on this principle that surrounds software development. In another article I talked about Don't Repeat Yourself and we went through some examples in code. The goal of this articl...Discuss·21 likes·125 readsThe Pragmatic Engineerdry
Andrew FosterforAndrew's Getting Back on the Railsandrewfoster.hashnode.net·Jun 10, 2022Collections and Resources - DRYing UpNow that I've got some scaffolded code in there for the models I intend to use for this application there is something I can do to DRY up the code somewhat. Looking at CodeClimate for my repository as it stands right now it has given me a rating of C...Discuss·1 like·35 readsRails 7 ApplicationRuby on Rails
Tobias DavisforTobias Davissaibotsivad.hashnode.net·Aug 21, 2018Don't DRY your testsThere are two primary goals in a good test: documentation and assertion. When humans read code, good tests will show how that code was intended to be used—that's a type of documentation. But tests are also code and work as an assertion of behavior—be...DiscussTesting