
Similar Posts
Github’s Missing Feature : Folder Download
ByAdilHave you ever found yourself in this situation on GitHub? You discover the perfect code example, a useful UI component, or just the documentation folder you need. The catch? The only way to get it is to download the entire repository. That means you get years of commit history and countless irrelevant files, all just…
Smart Logging in .NET with Serilog
ByAdilLogging is more than just writing messages to a file.. it’s the nervous system of your application. It tells you what went wrong, when, and often why. In production systems, logging becomes a lifeline for diagnosing issues, tracking user behavior, and maintaining operational clarity. But logging isn’t just about volume, it’s about control. Too little,…
Handling Massive Excel Files in Angular: From Upload to IndexedDB with Lightning-Fast Search
ByAdilA comprehensive guide to building scalable data processing solutions. 1. Hook: The Pain of Big Excel Files in Angular Ever tried uploading a 50MB Excel file with 100,000+ rows in your Angular app? If yes, you probably saw your app freeze, your memory spike, and your users quickly lose patience. I’ve been there — one…
🚀 Dapper vs. EF Core: Performance Showdown in 2025
ByAdil🔍 Introduction In the .NET ecosystem, two prominent data access technologies are Dapper and Entity Framework Core (EF Core). Both have evolved significantly, especially with the advancements in .NET 8 and 10. Understanding their performance characteristics is crucial for developers aiming to make informed decisions. ⚙️ Framework Overview Dapper: A micro ORM developed by StackExchange,…
From Analog to Digital: Signal Simulation
ByAdilHave you ever wondered how your music, voice calls, or even video streams travel from the physical world into the digital devices we use every day? The answer lies in signal processing the art of converting an analog signal into a digital one. In this post, I’ll walk you through a simple MATLAB simulation where…
Running Your Expo App on a Real Device for Testing
ByAdilAs an Expo developer, you’ve likely spent countless hours running your app on a simulator or emulator. While that’s great for most development, nothing beats the feel of your app on a real device. It’s the only way to truly test performance, native features, and user experience. There are two primary paths for running your…