Nurul Islamnuibb.hashnode.dev·Nov 21, 2024Embracing Single Responsibility Principle in iOSOne of the foundational principles of clean code and scalable software design is the Single Responsibility Principle (SRP)—a class should have one, and only one, reason to change. While it sounds straightforward, it often gets overlooked, especially ...1 likeSOLID principles
Noyon Rahmanblog.noyonrahman.xyz·Nov 6, 2024Understanding the Single Responsibility Principle (SRP) for BeginnersOne of the simplest ways to make your code easier to read, test, and maintain is by following the Single Responsibility Principle (SRP). SRP is a core part of the SOLID principles in software design and is all about giving each function, method, or c...1 like·37 readsSRP
Sohag Hasannotes.sohag.pro·Oct 25, 2024Keep It Simple: Mastering the Single Responsibility Principle in Laravel with Real-World ExamplesSingle Responsibility Principle in Laravel Have you ever walked into a kitchen where one person is simultaneously cooking, washing dishes, taking phone orders, and managing inventory? Chaos, right? This is exactly what happens in our code when we ign...1 like·33 readsPrinciplesSOLID principles
Vedant Phougatevolving-engineer.hashnode.dev·Sep 30, 2024SOLID Principles: Applying Single Responsibility Principle to Real-World Code1. Introduction Ever wondered why you found yourself modifying the same class to accommodate unrelated features? Imagine having a class responsible for processing invoices, but over time, it has become the go to class to fix issues related to databas...271 readsC#
Rishi Bakshirishibakshi.hashnode.dev·Sep 5, 2024FeaturedUnderstanding the Single Responsibility Principle in ReactThe Single Responsibility Principle (SRP) in React emphasizes that each component should have one, and only one, reason to change. This means a component should focus on a single piece of functionality or responsibility. By adhering to SRP, you ensur...83 likes·732 readsMaster Design Patterns In Reactmaster react
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 ...45 readsSOLID principles
Lucas Guzzoblog.lucasguzzo.dev·Jun 24, 2024Single Responsibility Principle (SRP)In the ever-evolving landscape of software development, maintaining clean, manageable, and scalable code is paramount. One of the foundational principles that aid in achieving this is the Single Responsibility Principle (SRP). As the first letter in ...33 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...solid
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...182 readsFundamentalsSOLID principles
Ankit Chahalankitchahal20.hashnode.dev·Dec 20, 2023Single Resonposility Principle in GOIntroduction The single Resonposility Principle (SRP) states that a class, function, module, or type should have only reason to change. The idea is to design classes or types that are focused on a single task or responsibility. This makes the code mo...70 readsgolang