Static
Everything on SkillVeris tagged Static — collected across the glossary, study notes, blog, and cheat sheets.
17 resources across 1 library
Study Notes(17)
x:Static and x:Type
Bridging XAML to CLR code: pulling in static field/property values with x:Static and referencing types themselves with x:Type.
Row-Level Security
How Power BI restricts which data rows a user can see through DAX-defined roles, the static-vs-dynamic distinction, and what RLS does not protect.
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.
Extension Methods
Learn how Dart's extension methods let you add new functionality to existing types — including types you don't own, like String or int — without subclassing or…
Subprograms and CALL Statements
Learn how COBOL programs invoke reusable subprograms with the CALL statement, pass parameters via the LINKAGE SECTION, and choose between static and dynamic li…
Serving Static Content
How Nginx efficiently serves static files using root, alias, sendfile, caching headers, and try_files.
Dynamic Provisioning
See how Kubernetes automatically creates storage volumes on demand via CSI provisioners instead of requiring admins to pre-create PVs.
Static Files in Flask
Understand how Flask serves CSS, JavaScript, and images from the static folder, how to reference them safely with url_for, and how to prepare static assets for…
File-Based Routing
How Next.js derives an application's routes automatically from the folder structure inside the app directory, including dynamic segments and navigation.
Incremental Static Regeneration
Learn how Incremental Static Regeneration (ISR) lets Next.js update statically generated pages after deployment without a full rebuild.
Metadata and SEO in Next.js
Learn how to manage titles, descriptions, Open Graph tags, and structured metadata using the App Router's metadata object and generateMetadata, plus sitemap an…
Static Assets and the public Folder
How Next.js serves files from the public directory at the site root, and when to use it versus importing assets directly into components.
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.
static Keyword in Java
Learn how the static keyword creates class-level fields, methods, and blocks shared across all objects in Java.
Class Methods and Static Methods in Python
The difference between instance methods, @classmethod (receives cls), and @staticmethod (receives neither self nor cls), with practical use cases.
Static Members in TypeScript
Define properties and methods that belong to the class itself rather than to individual instances, using the static keyword.
Static Members
Learn how static fields, methods, and classes attach behavior and state to a type itself rather than to individual instances, and when that design choice makes…