Simple, beginner-friendly articles on Web Development and Software Engineering
Hi! I am Garvit, a software engineer from Pune, India. This is my personal blog where I write about my learnings and experiences in tech as I get better at giving instructions to computers. Hope you get something helpful out of them.
All ArticlesLatest Posts
All ArticlesPrinciple of least knowledge
The Law of Demeter, also known as the "Principle of Least Knowledge," is a design guideline in Object-Oriented Programming that aims to reduce the dependencies between objects, thereby creating loosely coupled and highly maintainable code.
Published On - 29 October, 2024
SOLID Principles
SOLID principles are five design guidelines for writing maintainable, scalable, and flexible code - These are Single Responsibility, Open/Closed, Liskov's Substitution, Interface Segregation, and Dependency Inversion.
Published On - 18 October, 2024
Why composition is favorable over inheritance?
Composition is preferred over inheritance because it offers flexibility, reduces tight coupling, and promotes reusable code. It allows for dynamic behavior changes without the rigidity of inheritance, resulting in more maintainable and scalable systems.
Published On - 2 October, 2024
A smart way of handling errors in NodeJS
Error handling is a crucial part of any application, especially in backend applications. So, in this blog post, I am sharing how I have been handling errors quite gracefully in my backend applications.
Published On - 6 April, 2024
Authors' Picks
All ArticlesSOLID Principles
SOLID principles are five design guidelines for writing maintainable, scalable, and flexible code - These are Single Responsibility, Open/Closed, Liskov's Substitution, Interface Segregation, and Dependency Inversion.
Published On - 18 October, 2024
Why composition is favorable over inheritance?
Composition is preferred over inheritance because it offers flexibility, reduces tight coupling, and promotes reusable code. It allows for dynamic behavior changes without the rigidity of inheritance, resulting in more maintainable and scalable systems.
Published On - 2 October, 2024