Needs
Everything on SkillVeris tagged Needs — collected across the glossary, study notes, blog, and cheat sheets.
17 resources across 1 library
Study Notes(17)
Batch Script Functions with CALL
Learn how to simulate reusable functions in Windows Batch using labeled subroutines invoked with CALL, including parameter passing and local variable scope.
Dependency Properties
Learn why WPF replaces plain CLR properties with DependencyProperty for UI elements, enabling data binding, styling, animation, and property value inheritance.
JavaScript Interop
Call JavaScript from C# and C# from JavaScript in Blazor to access browser APIs that .NET can't reach directly.
Playwright in CI/CD Pipelines
How to configure Playwright to run reliably on CI, including GitHub Actions setup, Docker images, and CI-aware config adjustments.
Plugins and the Plugins File
Understand Cypress's Node-side plugin system via setupNodeEvents, how to hook into the test lifecycle, and common plugin use cases.
Hadoop Security with Kerberos
How Kerberos authentication secures a Hadoop cluster, covering the KDC, tickets, keytabs, SPNEGO, delegation tokens, and how authorization layers like Ranger b…
Time Intelligence in DAX
Time intelligence functions like TOTALYTD, SAMEPERIODLASTYEAR, and DATEADD let DAX measures compare and accumulate values across calendar periods.
Apex Design Patterns
Explore the Trigger Handler, Service Layer, Selector, and Unit of Work patterns that keep large Apex codebases maintainable, testable, and bulk-safe.
Branching and Loops in sed
Learn how sed uses labels, unconditional branches, and conditional branches to build loops and control flow inside its scripting language.
quote and quasiquote
How LISP's quote, quasiquote, unquote, and unquote-splicing let you treat code as inert data and selectively rebuild it as templates.
Arithmetic in Prolog
Learn how Prolog evaluates arithmetic expressions with is/2, the difference between unification and arithmetic comparison, and common numeric predicates.
Modules in Prolog
Learn how Prolog's module system namespaces predicates, controls visibility, and enables code reuse across larger logic programs.
MVCC Explained
How PostgreSQL's Multi-Version Concurrency Control lets readers and writers avoid blocking each other by keeping multiple row versions and using visibility rul…
Monitoring RabbitMQ
Learn the key metrics, tools, and alerting strategies for keeping a RabbitMQ cluster observable and catching problems before they cause outages.
WASI Explained
What the WebAssembly System Interface is, why it exists, and how it lets Wasm modules run safely outside the browser.
Schema Registry and Avro
How the Schema Registry and Avro serialization give Kafka's opaque byte messages an enforced, evolvable structure across producers and consumers.
$lookup and Joins in MongoDB
Understand how $lookup performs left outer joins across collections in the aggregation pipeline, from simple equality joins to correlated subqueries.