Decoupling
Everything on SkillVeris tagged Decoupling — collected across the glossary, study notes, blog, and cheat sheets.
8 resources across 2 libraries
Study Notes(2)
WinUI 3 Overview
WinUI 3 is Microsoft's native, open-source UI framework for Windows desktop apps, decoupled from the OS and shipped via the Windows App SDK.
ConfigMaps and Secrets
Learn how to externalize configuration and sensitive data from container images using ConfigMaps and Secrets in Kubernetes.
Interview Questions(6)
What is the Observer Pattern?
The Observer pattern defines a one-to-many dependency where a subject notifies a list of registered observers automatically whenever its state changes.
What is the Chain of Responsibility Pattern?
The Chain of Responsibility pattern passes a request along a chain of handler objects until one of them decides to process it, decoupling the sender of a reque…
What is the Command Pattern?
The Command pattern encapsulates a request as a standalone object, bundling the receiver, the action to invoke, and its parameters, so callers can issue, queue…
What is Inversion of Control?
Inversion of Control (IoC) is the design principle where a program’s flow of control, including object creation and the wiring of collaborators, is handed to a…
What is a Message Queue?
A message queue is a middleware component that lets a producer publish messages which sit durably in a buffer until a consumer pulls and processes them, decoup…
What Are Message Queues and Why Do DevOps Teams Use Them?
A message queue is an intermediary system that stores messages produced by one service until a consumer service is ready to process them, decoupling producers…