Means
Everything on SkillVeris tagged Means — collected across the glossary, study notes, blog, and cheat sheets.
15 resources across 1 library
Study Notes(15)
Sideloading UWP Apps
How to install UWP/MSIX apps outside the Microsoft Store for development, testing, and enterprise line-of-business distribution.
CI/CD for .NET Apps
How to build automated build, test, and deployment pipelines for .NET applications using GitHub Actions, the dotnet CLI, and containerized deployments.
Delegation and Its Limits
A deep dive into how Power Apps delegation works, which functions and connectors support it, and practical strategies for working around non-delegable formulas.
Digital Input and Output
Learn how Arduino pins read and drive binary HIGH/LOW signals using pinMode(), digitalWrite(), and digitalRead(), including the role of pull-up and pull-down r…
Code as Data: Homoiconicity
Why LISP source code and LISP data share the same list representation, and how this property enables macros, metaprogramming, and eval.
Multiple Dispatch Explained
Understand how Julia selects a method based on the runtime types of all arguments, and why this is central to Julia's design and performance.
Modern Perl Best Practices
A guide to writing clean, safe, and maintainable Perl using strict, warnings, modern object systems, and idiomatic patterns favored in current Perl codebases.
Backpressure in WebSockets
How to detect and handle slow consumers on a WebSocket connection before unbounded buffering leads to memory exhaustion or unresponsive clients.
SSL/TLS Termination
Learn how nginx terminates TLS at the edge, configure certificates and modern cipher policy, and decide between plaintext and re-encrypted backend connections.
Idempotency in Ansible
The principle that running a playbook repeatedly against the same hosts produces the same end state, and why purpose-built modules achieve it while raw command…
Writing Your First Test First
Learn what it means to specify behavior with a failing test before any implementation exists, and how to pick a good starting test case.
Defensive Bash Scripting
Techniques for writing bash scripts that fail safely, validate their inputs, and avoid the common footguns that turn a small bug into a production incident.
Revalidation Strategies
Understand time-based revalidation (ISR) and on-demand revalidation with revalidatePath and revalidateTag, and how to wire them into Server Actions and Route H…
Static Site Generation
Learn how Next.js pre-renders pages to static HTML at build time using Static Site Generation, and when it's the right rendering strategy.
k-Means Clustering
An unsupervised algorithm that partitions data into k groups by iteratively assigning points to the nearest centroid and recomputing centroids until convergenc…