After over two years of development, Vue 3.0 “One Piece” has officially been released. This is the most significant update in Vue’s history, bringing fundamental improvements to the framework’s architecture, performance, and developer experience. As someone who has been following Vue since version 1.x, I’m excited to walk you through what makes this release so […]
Read more โSearch Results for: name
SQL Server Temporal Tables: Time Travel Queries
Temporal tables automatically track history. Query what data looked like at any point in time. Create Temporal Table Query History Use Cases Audit trails Point-in-time recovery Slowly changing dimensions
Read more โNode.js 14 LTS: New Features and Improvements
Node.js 14 becomes LTS in October. Here’s what’s new for production use. Top Features Optional chaining and nullish coalescing Diagnostic reports GA Experimental async local storage V8 8.1 with better performance Optional Chaining References Node 14 Release
Read more โAzure API Management: Complete Implementation Guide
Deep dive into Azure APIM. Beyond a simple proxy, APIM is your unified entry point for microservices. We cover the Consumption tier (Serverless), Policies for security, and Versioning strategies. Architecture Policies: The Power of XML Use policies to modify requests before they reach the backend. Versioning Use “Path Based” versioning (e.g., `/v1/orders`) for explicit contracts. […]
Read more โBlazor Component Libraries: Building Reusable UI
Razor Class Libraries (RCLs) allow you to share Blazor components across multiple apps. With .NET Core 3.1 and upcoming .NET 5, they now support including static assets (CSS, JS, images) inside the NuGet package. This guide builds a reusable “Modal” component library. Project Structure Create a new RCL project: Static Web Assets Place CSS in […]
Read more โKubernetes Operators in .NET: Getting Started
Operators extend Kubernetes with custom domain logic. While usually written in Go, the .NET ecosystem has matured with the `KubeOps` SDK. We can now write C# operators to manage custom resources like `DatabaseCluster` or `TenantNamespace`. The Operator Pattern Defining a CRD in C# The Reconciler Key Takeaways Operators encode operational knowledge into software. The Reconcile […]
Read more โ