Introduction: Long contexts contain valuable information, but they also contain noise, redundancy, and irrelevant details that consume tokens and dilute model attention. Context distillation extracts the essential information from lengthy documents, conversations, or retrieved passages, producing compact representations that preserve what matters while discarding what doesn’t. This technique is crucial for RAG systems processing multiple […]
Read more โYear: 2019
TypeScript Generics: Writing Flexible, Reusable Code
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 โ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 โ