Runtime
Everything on SkillVeris tagged Runtime — collected across the glossary, study notes, blog, and cheat sheets.
10 resources across 3 libraries
Study Notes(7)
Silverlight Application Lifecycle
How a Silverlight application started up, ran, and shut down inside the browser plugin, from Application.Startup through Application.Exit.
.NET Runtime vs SDK
The difference between the .NET Runtime (needed to run apps) and the .NET SDK (needed to build them), and when to install each.
Runtime Identifiers and Native AOT
How Runtime Identifiers (RIDs) target specific platforms and how Native AOT compiles .NET apps straight to native code for fast, lightweight startup.
Permissions and Lifecycle
Understand runtime permission requests and the app lifecycle events that govern how a .NET MAUI app behaves in the foreground and background.
Objective-C Runtime and Dynamism
How Objective-C's message-passing runtime enables introspection, method swizzling, and associated objects, and the risks that come with that power.
Comparing Wasm Runtimes
A practical comparison of Wasmtime, WasmEdge, wasmer, and browser engines, covering performance, WASI support, and ideal use cases for each.
Polymorphism Explained
See how C# achieves polymorphism through virtual method dispatch, interface implementations, and method/operator overloading, letting one code path handle many…
Cheat Sheets(1)
Interview Questions(2)
What Is the JavaScript Event Loop?
The event loop is the mechanism that lets single-threaded JavaScript handle asynchronous work by continuously checking whether the call stack is empty and, if…
Microtask vs Macrotask Queue: What Is the Difference?
The microtask queue holds high-priority callbacks like Promise .then() handlers and queueMicrotask(), which the event loop fully drains after every single sync…