Namespaces
Everything on SkillVeris tagged Namespaces — collected across the glossary, study notes, blog, and cheat sheets.
19 resources across 3 libraries
Study Notes(14)
XAML Namespaces
How xmlns declarations map XML prefixes to CLR namespaces and assemblies, enabling XAML to reference both framework and custom types.
Views and Schemas
Learn how SQL Server views package reusable queries and how schemas organize objects into logical namespaces with independent permissions.
Namespaces in Socket.IO
Understand how namespaces partition a single Socket.IO server into independent communication channels, each with its own middleware, event handlers, and connec…
Socket.IO Best Practices
Practical patterns for structuring, scaling, and maintaining production Socket.IO applications.
Namespaces in Tcl
How Tcl's namespace command organizes procedures and variables into separate scopes to avoid naming collisions in larger programs.
Tcl Best Practices
Practical conventions — namespacing, structured error handling, and safe command construction — that keep Tcl scripts maintainable as they grow.
Namespaces and require
Learn how Clojure organizes code into namespaces and how ns, require, import, and refer control how symbols are loaded and referenced across files.
Packages and Namespaces
Understand how Perl's 'package' keyword partitions global symbol tables to avoid naming collisions and how namespaces underpin every module and class.
Schemas and Namespaces
How PostgreSQL uses schemas as namespaces within a database to organize objects, control search_path resolution, and isolate multi-tenant or multi-team data.
Scope and Namespaces in Python
Understanding Python's LEGB scope resolution order and how the global and nonlocal keywords let functions modify variables outside their local scope.
Namespaces in TypeScript
TypeScript's legacy 'internal modules' feature for grouping related code under a single global name, and why ES modules are now preferred.
Namespaces and Resource Quotas
Understand how Kubernetes Namespaces provide multi-tenant isolation and how ResourceQuotas and LimitRanges enforce fair compute usage across teams.
Namespaces in PHP
Understand how PHP namespaces prevent naming collisions between classes, functions, and constants, and how import statements and resolution rules connect them…
Namespaces and Assemblies
Learn how C# namespaces organize code logically while assemblies (.dll/.exe) are the physical, deployable units the .NET runtime actually loads.
Cheat Sheets(2)
TypeScript Namespaces & Modules Cheat Sheet
Compares ES module import/export syntax with legacy TypeScript namespaces, covering declaration merging and when each approach fits.
XML Basics Cheat Sheet
A foundational reference for XML document structure, elements, attributes, namespaces, and validation with XSD and DTD.
Interview Questions(3)
Containers vs VMs: How Do They Differ at the OS Level?
A VM virtualizes hardware and runs a full separate guest kernel on top of a hypervisor, while a container shares the single host kernel and is isolated only by…
What are cgroups and namespaces, and how do they power containers?
Linux namespaces give a process its own isolated view of system resources (PIDs, network, mounts, hostname, users, IPC), while cgroups (control groups) limit a…
How Does DNS Resolution Work Inside Kubernetes?
Kubernetes gives every Service a stable, cluster-internal DNS name in the form service.namespace.svc.cluster.local, resolved by an in-cluster DNS server (CoreD…