Community Contributions Sharing knowledge and building community through conferences, user groups, and technical sessions. Community Sessions & Events Founded Letterkenny DotNet Azure User Group May 2018 Global Office 365 Developer Bootcamp 2018 October 2018 View on GitHub โ Global AI Bootcamp 2018 December 2018 Introduction to Azure Cognitive Services – Session & Lab Hands-on Lab […]
Read more โSearch Results for: events
Becoming a .NET Foundation Member: My Journey
I’m excited to announce that I’ve been accepted as a member of the .NET Foundation! This is a significant milestone in my developer journey, and I wanted to share what it means and how you can get involved. What is the .NET Foundation? The .NET Foundation is an independent organization supporting the open source .NET […]
Read more โVisual Studio 2019 Community Launch – What’s New for .NET Developers
We hosted the Visual Studio 2019 Community Launch event in Letterkenny, and I had the honor of presenting what’s new in C# 8.0 and .NET Core 3.0 (preview). The energy in the room was fantastic! Visual Studio 2019 Highlights The new IDE brings significant improvements: Faster load times: Solution load is noticeably quicker AI-powered IntelliCode: […]
Read more โOutbox Pattern: Reliable Messaging in Distributed Systems
The Outbox Pattern solves a common problem: how do you update a database AND publish a message reliably? Without it, you risk losing messages or creating duplicates. The Problem If the publish fails, your database has the order but no event was sent. Downstream systems never know about it. The Solution Write events to an […]
Read more โVue.js Components: Building Reusable UI
Components are the heart of Vue.js. Build once, reuse everywhere. Here’s how to create flexible, maintainable Vue components. Basic Component Props Validation Custom Events Slots for Flexibility Component Organization Keep components small and focused Use scoped styles to avoid CSS conflicts Prefix base components (BaseButton, BaseInput) Validate props for better dev experience References Vue.js Components […]
Read more โAzure Service Bus: Queues vs Topics
Azure Service Bus is Microsoft’s enterprise messaging service. But should you use queues or topics? Here’s the difference and when to use each. Queues: Point-to-Point Queues deliver messages to a single receiver. First-in, first-out. Perfect for work distribution: Topics: Publish-Subscribe Topics deliver messages to multiple subscribers. Each subscriber has its own subscription: When to Use […]
Read more โ