YAML pipelines are the future of Azure DevOps. They’re version-controlled, reviewable, and more powerful than classic pipelines. Here’s how to build them properly. Basic Structure Variables and Secrets Templates for Reuse References YAML Schema Reference
Read more →Month: February 2019
Vue.js for Beginners: The Progressive Framework
Vue.js has been on my radar for a while. After React and Angular, I wanted to see what the fuss was about. Turns out, Vue hits a sweet spot between simplicity and power. Here’s my getting-started guide. Why Vue? Vue is “progressive”—you can use as little or as much as you need. Start with a […]
Read more →LK DevConf 2019: Building Modern Web Applications
LK DevConf 2019 was a blast! This local developer conference in Letterkenny brought together speakers from across Ireland to share knowledge about modern development practices. My Session: Modern .NET Development I presented a session on building modern web applications with ASP.NET Core. The focus was on practical patterns that work in real projects: Clean Architecture […]
Read more →SQL Server Query Optimization: Index Strategies
I’ve spent countless hours staring at execution plans. Indexes are the single biggest lever you have for query performance, but they’re often misunderstood. Here’s what actually works. The Basics An index is like a book’s index—it helps you find data without scanning every page. Without indexes, SQL Server reads every row (table scan). With the […]
Read more →Building SPFx Web Parts with React
React is the recommended framework for SPFx web parts, and for good reason. The component model fits perfectly with SharePoint’s web part architecture. Here’s how to build a real-world web part using React and TypeScript. Project Setup Web Part Structure An SPFx React web part has two main files: WebPart.ts – The SPFx wrapper that […]
Read more →CQRS Pattern Explained: Separating Reads from Writes
CQRS—Command Query Responsibility Segregation—sounds intimidating, but the core idea is simple. Separate your read operations from your write operations. Here’s why you’d want to do that and how to get started. The Problem In traditional CRUD applications, the same model handles both reads and writes. This works fine until: Your read queries need different data […]
Read more →