Dynamic
Everything on SkillVeris tagged Dynamic — collected across the glossary, study notes, blog, and cheat sheets.
26 resources across 2 libraries
Study Notes(24)
Dynamic Variables and Faker Data
How to use Postman's built-in dynamic variables like {{$guid}} and {{$randomEmail}} to generate realistic fake data on every request.
Dynamic DAG Generation
Techniques for programmatically generating multiple Airflow DAGs from configuration files or metadata instead of hand-writing each one, and the performance tra…
Dynamic Content
Learn how to pass outputs from triggers and earlier actions into later steps using Power Automate's dynamic content picker and underlying expressions.
Dynamic Memory Management
Understand pointers, the heap, and how to allocate, use, and free dynamic memory safely in Pascal.
Pointers in Pascal
Understand Pascal pointers, dynamic memory allocation with New/Dispose, and how they power dynamic structures like linked lists.
Dynamic vs Lexical Scope
How lexical scope resolves variables by source-text structure while dynamic scope resolves them by the call stack, and how Common Lisp uses both via special va…
Arrays and Slices in D
How D's static arrays, dynamic arrays, and slices differ in memory ownership, mutation, and performance, and how to use them correctly.
Dynamic Method Dispatch
How Groovy resolves which method implementation to invoke at runtime based on actual argument types, and how this differs from Java's static dispatch.
Expando and MetaClass
How Groovy's Expando class and ExpandoMetaClass let you add properties and methods to objects dynamically at runtime, even to existing Java classes.
The Heap and Dynamic Memory
How assembly programs request and manage runtime memory using brk/sbrk and mmap, and the manual bookkeeping needed to avoid leaks.
Dynamic Inventory
Inventory plugins and scripts that pull host lists from live sources like cloud APIs instead of static files, keeping Ansible's view of infrastructure accurate…
Dynamic Provisioning
See how Kubernetes automatically creates storage volumes on demand via CSI provisioners instead of requiring admins to pre-create PVs.
Observability in Kubernetes
Observability in Kubernetes combines metrics, logs, and traces to answer not just whether something is broken, but why, across ephemeral pods and dynamic sched…
Dynamic vs Explicit Mapping
Compare Elasticsearch's automatic field-type inference against explicitly defined mappings, and know when to use each.
Dynamic Routes and Params
Understand how to build dynamic and catch-all routes using bracket folder naming, read route params in Server and Client Components, and pre-render them with g…
Dynamic Memory Allocation in C++
Learn how `new` and `delete` allocate and free heap memory at runtime, and why forgetting to `delete` causes a memory leak.
Dynamic Memory Allocation in C
Master C dynamic memory allocation with malloc, calloc, realloc, and free, including sizing, zero-initialization, and leak prevention.
Trait Objects and Dynamic Dispatch in Rust
Trait objects like `dyn Trait` enable runtime polymorphism for heterogeneous collections, at the cost of dynamic dispatch.
Dynamic Routing in React
Use URL parameters and the useParams and useNavigate hooks to build dynamic, data-driven routes in React Router.
Introduction to Dynamic Programming
Learn what dynamic programming is and the two conditions — overlapping subproblems and optimal substructure — that make it applicable.
Load Balancing Algorithms
Surveys the algorithms load balancers use to distribute traffic across backend servers, from simple round robin to adaptive least-connections and consistent ha…
Dynamic Blocks
Learn how to generate repeated nested configuration blocks programmatically inside a resource, avoiding hand-written repetition for variable-length nested sett…
Dynamic Routes and Route Params
Learn how to define route paths with dynamic segments and read those values reactively inside components using route params.
Dynamic and Nested Form Groups
Build complex forms by nesting FormGroups and using FormArray to add, remove, and validate repeating or conditional sets of controls at runtime.
Cheat Sheets(2)
C++ Pointers & Memory Management Cheat Sheet
Covers C++ pointer syntax, dynamic memory allocation with new and delete, pointer arithmetic, and common memory management pitfalls.
C Pointers Cheat Sheet
Covers C pointer basics, pointer arithmetic with arrays, function pointers, malloc/free dynamic memory, and common undefined-behavior pitfalls.