Dependency
Everything on SkillVeris tagged Dependency — collected across the glossary, study notes, blog, and cheat sheets.
17 resources across 1 library
Study Notes(17)
Dependency Properties
Learn why WPF replaces plain CLR properties with DependencyProperty for UI elements, enabling data binding, styling, animation, and property value inheritance.
Dependency Injection in MVVM
How MVVM ViewModels receive their collaborators — data services, navigation, dialogs — via constructor injection instead of creating them directly, and why tha…
Dependency Injection in .NET
How .NET Core's built-in DI container registers, resolves, and manages the lifetime of application services.
Dependency Injection in Blazor
Learn how Blazor's built-in DI container registers and resolves services, and how lifetimes affect component behavior.
Dependency Injection Basics
How ASP.NET Core's built-in dependency injection container registers and supplies services throughout your application.
Dependency Injection
Understand how .NET MAUI's built-in dependency injection container wires up services, view models, and pages via MauiProgram.cs.
Dependency Injection Explained
Learn how Spring's IoC container supplies objects with the collaborators they need, instead of letting objects build those collaborators themselves.
Dependency Inversion
Distinguish the Dependency Inversion Principle from Dependency Injection and apply constructor injection against an abstraction.
Dependency Injection with Hilt
Hilt is Android's recommended dependency injection library built on Dagger, providing standard components and annotations that wire dependencies into Activitie…
Dependency Injection in SwiftUI
Learn how to supply view models and services to SwiftUI views through initializers and the environment, keeping views testable and decoupled from concrete impl…
Unit Testing ViewModels in Swift
Learn how to write focused, reliable unit tests for SwiftUI ViewModels using XCTest or Swift Testing, including async code and dependency injection.
Caching and Build Artifacts
Learn how CI/CD pipelines speed up builds with dependency caching and pass data between jobs using artifacts, and where each technique fits.
Dependency Scanning and SAST
Automated dependency scanning and static application security testing catch known-vulnerable libraries and insecure code patterns before they reach production,…
The Dependency Graph
Terraform builds a directed acyclic graph of every resource before executing, determining safe, maximally parallel ordering for creates, updates, and deletes.
Computed Caching and Performance
Explains how Vue's computed properties memoize their results based on reactive dependencies, and how to use that caching behavior deliberately to avoid wastefu…
Dependency Injection Basics
Understand how dependency injection decouples classes from their collaborators, and how the built-in .NET DI container manages object lifetimes.
Hierarchical Dependency Injection
Understand how Angular's injectors form a tree mirroring the component hierarchy, how token resolution walks up that tree, and how to scope service instances d…