You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SOLID Factory is a Unity2D Project which has been developed to test high-level programming concepts such as SOLID, DRY, Separation of Concern, Composition over Inheritance, Maximize Cohesion, Minimize Coupling, and Dependency Injection(via Exzenject) principles in Unity.
The Decorator Pattern attaches additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.
A factory method handles object creation and encapsulates it in subclass. This decouples the client code in the superclass from the object creation code in the subclass.
The strategy pattern defines a family of algorithms, encapsulates each one, and makes them interchangeable. Strategy lets the algorithm vary independently from the clients that use it.
NPM Module. Enable the events/actions communication between Micro Frontend/UI applications. Vanilla javascript implementation. Framework agnostic. CI/CD release train. 100% meaningful unit test coverture.
I've started learning design patterns to improve my software development skills. I share my code on GitHub to document my progress and contribute to the developer community. Check out my repository for practical examples of various design patterns!
The observer pattern defines a one-to-many dependency between objects so that when one object changes state,all of its dependents are notified and updated automatically.