Azure SQL Edge: SQL Server for IoT

Azure SQL Edge is a small-footprint container (less than 500MB) optimized for IoT edge gateways. It runs SQL Server engine on ARM64 devices (like Raspberry Pi or Jetson Nano) and includes streaming capabilities. Architecture Streaming T-SQL You can create a `STREAM` object in T-SQL to process incoming data windows. Key Takeaways Runs on ARM64 and […]

Read more โ†’

Pulumi vs Terraform: Which IaC Tool to Choose

Both are excellent IaC tools. Here’s how to decide between them. Terraform HCL language (declarative) Huge community and modules Been around longer, very stable Provider ecosystem unmatched Pulumi Real programming languages Better for complex logic Native testing with familiar tools Smaller but growing community My Take Terraform for broad team adoption. Pulumi if your team […]

Read more โ†’
Posted in Uncategorized

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 โ†’

TypeScript 4.0 Beta: Variadic Tuple Types

TypeScript 4.0 is a major milestone. The headline feature is Variadic Tuple Types, which finally allows strong typing for high-order functions like `concat` or `curry`. We explore this and Labeled Tuple Elements. Variadic Tuple Types You can now use spread syntax in generic tuple logic. Labeled Tuple Elements Tuples can now provide descriptive labels for […]

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 โ†’