Azure Arc for Kubernetes: Unified Hybrid Cloud Management

Azure Arc extends the Azure control plane (ARM) to resources running outside of Azure—on-premises, in AWS, or GCP. With Arc-enabled Kubernetes, you can manage any K8s cluster (OpenShift, Rancher, GKE) right from the Azure Portal. GitOps with Flux Arc agents installed in the cluster include Flux CD. You can push configurations via Azure Policy. Azure […]

Read more →

Microsoft Ignite 2020: Top Azure Announcements for Developers

Microsoft Ignite 2020 went fully virtual this year due to the pandemic, but that didn’t slow down the announcement pace. As someone who follows Azure closely, here are the announcements that matter most for developers and architects. Azure Communication Services This is potentially the biggest announcement for developers building communication features. Azure Communication Services (ACS) […]

Read more →
Posted in UncategorizedTagged

Vue 3 Composition API: Practical Examples and Patterns

Now that Vue 3 is released, let’s dive deeper into the Composition API with practical examples you can use in real projects. I’ve been using the Composition API in production for several months via the Vue 2 plugin, and these patterns have proven invaluable. Understanding Reactivity Fundamentals The Composition API introduces two main reactive primitives: […]

Read more →
Posted in Uncategorized

Vue 3.0 ‘One Piece’ Released: Complete Overview

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 →
Posted in Uncategorized

SQL Server Temporal Tables: Time Travel Queries

Temporal Tables (System-Versioned Tables) automatically keep a full history of data changes. When you update a row, the old version is moved to a history table. This is built-in to SQL Server and Azure SQL. Creating a Temporal Table Time Travel Querying Ask “What was the price of this product yesterday?” Key Takeaways Great for […]

Read more →

Azure Front Door: Global Load Balancing and CDN

Azure Front Door is a global entry point for web applications. It operates at Layer 7 (HTTP/S), using Anycast protocol to route users to the nearest Point of Presence (PoP), effectively accelerating your app performance via split TCP. Global Load Balancing WAF (Web Application Firewall) Protect against SQL Injection and XSS at the edge. Key […]

Read more →