Default
Everything on SkillVeris tagged Default — collected across the glossary, study notes, blog, and cheat sheets.
17 resources across 1 library
Study Notes(17)
Silverlight MVVM
How the Model-View-ViewModel pattern organizes Silverlight applications around data binding, keeping views declarative and logic unit-testable outside of code-…
XAML Namespaces
How xmlns declarations map XML prefixes to CLR namespaces and assemblies, enabling XAML to reference both framework and custom types.
Tracking vs No-Tracking Queries
When to let EF Core track query results for later updates versus opting out with AsNoTracking for faster, read-only workloads.
Functions in R
How R functions are defined, scoped, and evaluated — covering default arguments, lexical scoping, return values, and the ... variadic argument.
Recursion and Tail Calls
Understand how F# uses recursion instead of mutable loops, and how tail-call optimization lets recursive functions run in constant stack space.
REST Between Services
Learn how RESTful HTTP APIs model resources, relationships, and versioning to provide a predictable, language-agnostic contract for synchronous microservice co…
Local vs Global Variables
Understand how Bash variable scope actually works, why globals are the default, and how to use `local` deliberately to write safer scripts.
Logging in Spring Boot
How Spring Boot's default Logback-based logging works, including log levels, per-package configuration, and structured logging for production.
Permissions and Groups
Django's permission system lets you gate actions per-model or per-object using auto-generated permissions, custom permissions, and reusable Groups that bundle…
Default Arguments in C++
Learn how to give function parameters default fallback values in C++ and the rule that default arguments must be trailing parameters.
Default and Keyword Arguments in Python
How to give function parameters default values and call functions with keyword arguments, plus the notorious mutable default argument trap.
Default and Rest Parameters in JavaScript
Use default parameter values and gather variable numbers of arguments with rest parameters.
Optional and Default Parameters in TypeScript
Make function parameters optional or give them default values, and understand how TypeScript infers their types.
Default Trait Implementations in Rust
Trait methods can provide a default body that implementers may use as-is or override with custom behavior.
Default and Named Arguments in Kotlin
Simplify function calls in Kotlin using default parameter values and named arguments instead of overloads.
Slots and Content Distribution
Explore how Vue slots let parent components inject markup into a child's template, covering default, named, and scoped slots.
Common Ruby Pitfalls
A tour of frequent Ruby mistakes — mutable defaults, frozen string surprises, nil handling, and block/proc return semantics — with fixes for each.