Problem
Everything on SkillVeris tagged Problem — collected across the glossary, study notes, blog, and cheat sheets.
25 resources across 1 library
Study Notes(25)
Silverlight and RIA Services
How WCF RIA Services generates a shared client/server data layer for Silverlight, cutting out the boilerplate of hand-writing DTOs, proxies, and validation twi…
Avoiding the N+1 Query Problem
How lazy loading silently causes one query per entity in a loop, and how Include, projection, and split queries fix it in EF Core.
What Is Apache Airflow?
An introduction to Apache Airflow as a platform for programmatically authoring, scheduling, and monitoring workflows defined as code.
dbt Semantic Layer Basics
The dbt Semantic Layer lets you define metrics once, on top of governed models, and query them consistently from any connected BI tool via MetricFlow instead o…
PKCE in Depth
How Proof Key for Code Exchange binds an authorization request to its token exchange and why S256 is mandatory in modern OAuth deployments.
Oracles and Chainlink Basics
Understand why blockchains need oracles, how Chainlink's decentralized network delivers tamper-resistant data, how to read a price feed with AggregatorV3Interf…
Computation Expressions
See how F#'s computation expressions, like the built-in option, async, and seq builders, plus custom ones, let you write sequential-looking code over effects l…
Contract Testing Explained
Understand how contract testing verifies that independently-deployed services agree on the shape of their API, catching integration breakage without full end-t…
Parameterized Tests
Learn how to replace repetitive, copy-pasted test cases with data-driven parameterized tests that scale to cover many inputs cleanly.
Mediator Pattern
A behavioral pattern that centralizes complex communications between related objects into a single mediator object, reducing direct coupling.
What Is Elasticsearch?
An introduction to Elasticsearch as a distributed search and analytics engine, why it exists, and the core concepts that make full-text search fast at scale.
What Is Apache Kafka?
An introduction to Apache Kafka as a distributed event streaming platform, why it was built, and where it fits in modern data architectures.
oneof Fields in Protobuf
Modeling mutually exclusive fields efficiently in Protocol Buffers using the oneof construct.
Incremental Static Regeneration
Learn how Incremental Static Regeneration (ISR) lets Next.js update statically generated pages after deployment without a full rebuild.
DataLoader and the N+1 Problem
Understand why naive GraphQL resolvers trigger the N+1 query problem and how Facebook's DataLoader batches and caches requests to fix it.
What Is GraphQL?
An introduction to GraphQL as a query language and runtime for APIs, and the problems it was designed to solve.
0/1 Knapsack Problem
Learn the classic 0/1 knapsack DP formulation, its O(nW) recurrence, and how to reconstruct the chosen items.
Activity Selection Problem
Select the maximum number of non-overlapping activities from a schedule using a greedy earliest-finish-time strategy.
Coin Change Problem
Solve the minimum-coins and count-ways variants of the coin change problem using DP in O(n * amount) time.
Fractional Knapsack Problem
Maximize the value of items packed into a capacity-limited knapsack when items can be split, using a greedy value-density strategy.
N-Queens Problem
Place N queens on an N×N chessboard so none attack each other, using backtracking with column, diagonal pruning.
Subset Sum Problem
Determine whether a subset of a given set of numbers sums exactly to a target value using an O(n*sum) boolean DP table.
Services and Networking
Understand how Kubernetes Services provide stable networking identities and load balancing for ephemeral, dynamically scheduled Pods.
Overfitting and Underfitting
The two failure modes of model fitting — memorizing noise in training data versus failing to capture real patterns — and the diagnostic and mitigation techniqu…
Showing 24 of 25.