Is Interface Segregation Principle Redundant?
The Interface Segregation Principle is so close to other SOLID principles. It significantly helps to implement them correctly.
The Interface Segregation Principle is so close to other SOLID principles. It significantly helps to implement them correctly.
What is Liskov Substitution Principle? How to apply it? What are its violations? Is it really hard to understand? Let’s know more about it.
The Open-Closed Principle is the second principle of SOLID. Let’s know what the Open-Closed Principle is, its limitations, and how can we follow it correctly.
The Single Responsibility Principle is tricky to follow, but why? Let’s dig into it.
How does SQL Server manage transactions concurrency by Isolation Levels, what are their anomalies, and how do they work?
Unfortunately, GraphQL Directives are underrated. They are among the most powerful features of GraphQL that enable you to enhance and extend your API
How does MongoDB GridFS work? When to use it over the ordinary file system? How to use it with Node.js? and What are its pros and cons?
Strategy, State, and Template design patterns are commonly used patterns and they are so close. Let’s know the differences between them.
How to handle asynchronous javascript using Callbacks, Promises, Async/Await, and Observables.