Generics let you write functions and classes that work with any type while maintaining type safety. They’re essential for reusable TypeScript code. Basic Generic Function Generic Interfaces Constraints References TypeScript Generics
Read more โMonth: June 2019
Vue.js Computed Properties and Watchers
Computed properties and watchers are powerful Vue.js features. Understanding when to use each is key to writing clean Vue code. Computed Properties Computed properties are cached and only update when dependencies change: Watchers Watchers react to changes – good for side effects: When to Use Which Computed: Deriving values, templates, getters Watch: Side effects, async […]
Read more โAzure Data Factory: Building ETL Pipelines
Azure Data Factory (ADF) is Microsoft’s cloud ETL service. Move and transform data at scale without managing infrastructure. Core Components Pipelines: Logical grouping of activities Activities: Tasks like copy, transform, run stored proc Datasets: Reference to data (tables, files) Linked Services: Connection strings to sources Triggers: When to run (schedule, event) Simple Copy Pipeline Copy […]
Read more โ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 โVue.js with Vuex: State Management Patterns
Vuex is Vue’s official state management library. When your app grows beyond simple component state, Vuex brings order to the chaos. Core Concepts In Components When to Use Vuex Shared state across many components Need for time-travel debugging Complex state transitions References Vuex Documentation
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 โ