Sohag Hasannotes.sohag.pro·Oct 25, 2024Master the Open-Closed Principle in Laravel: A Real-World Guide 🚀Open-Closed Principle in Laravel Introduction Have you ever found yourself repeatedly modifying existing code to add new features, only to break something else in the process? The Open-Closed Principle (OCP) is here to save you from this maintenance ...DiscussPrinciplesSOLID principles
Paul Apremjavacertification.hashnode.dev·Aug 15, 2024OCP Java 21 Certification Exam ExperienceWe at Enthuware took the new OCP Java 21 Certification exam and the following is our feedback about this exam. The number of questions in the 1Z0-830 exam is 50, which is the same as the older OCP Java 17 exam but the new exam gives you 120 minutes...Discuss1Z0-830
Geo J Thachankarygeothachankary.hashnode.dev·Aug 12, 2024Understanding the Open/Closed Principle (OCP) with C#In our previous post, we explored the Single Responsibility Principle (SRP), the first of the SOLID principles, which guides us in writing more maintainable and robust code. In this post, we delve into the second principle: the Open/Closed Principle ...Discuss·140 readsS.O.L.I.D Principles Using C#SOLID principles
Luis Gustavo Ganimiluisgustavoganimi.hashnode.dev·Aug 9, 2024Understanding SOLID Principles: A Guide to Writing Better Code in TypeScriptIn the world of software development, adhering to best practices can significantly enhance the quality and maintainability of your code. One such set of best practices is the SOLID principles. SOLID is an acronym for five design principles that help ...Discuss·45 readsSOLID principles
Hankyu Kimhankyukim.hashnode.dev·Jun 10, 2024SOLID Principle and Design PatternsSOLID abbreviation represents : SRP(Single Responsibility Principle) - A class should have only one responsibility. OCP(Open Closed Principle) - Software entities should be open for extension, but closed for modification LSP(Liskov Substitution Princ...Discusssolid
Saurabh Mahajanblog.saurabhmahajan.com·Apr 24, 2024S.O.L.I.D Principles - The Practical GuideWelcome to our exploration of SOLID principles—a foundational set of design principles in software engineering that can elevate the quality and maintainability of your code. In the ever-evolving landscape of software development, writing code that is...Discuss·174 readsFundamentalsSOLID principles
Serhat Levent Yavaşserhatleventyavas.dev·Nov 12, 2023Open-Closed Prensibi Nedir?Yazılım geliştirmenin bir yaşam döngüsü vardır. İlk önce talebi ya da sorunu analiz eder ve gereksinimleri ortaya çıkarırız. Ardından analize göre sistemi tasarlarız. Tasarlama süreci bitirdikten sonra kodlama aşamasına geçeriz. Kodlama sürecinin ard...DiscussOCP
Amburi Royamburi.hashnode.dev·Sep 10, 2023SOLID Principles: Open-Closed Principle (OCP)The Open-Closed Principle (OCP) is one of the SOLID principles of object-oriented programming. Definition: Software entities like classes, modules, functions, etc., should be open for extension but closed for modification. The “open” part says: We s...DiscussOCP
Adeesh Sharmaadeesh.hashnode.dev·Jun 24, 2023Using the Open Closed Principle (OCP) in ReactReact, a widely used JavaScript library for building user interfaces, is accustomed to using software design principles that make code easier to maintain and more readable. The "Open-Closed Principle" (OCP), a key idea in the realm of object-oriented...Discuss·199 readsReact