✕ Clear all filters
13 articles
▶ Videos →

📰 Dev.to · NARESH-CN2

13 articles · Updated every 3 hours · View all reads

All Articles 130,816Blog Posts 135,899Tech Tutorials 33,887Research Papers 25,445News 18,593 ⚡ AI Lessons
Stop Paying the Abstraction Tax : How I Built a C-Engine 12x Faster than Pandas
Dev.to · NARESH-CN2 📊 Data Analytics & Business Intelligence ⚡ AI Lesson 2mo ago
Stop Paying the Abstraction Tax : How I Built a C-Engine 12x Faster than Pandas
Python is the king of data science, but it charges a heavy price for convenience. When you use...
Hardening a 1P/3C Broadcast Engine: Achieving 33.92M records/s with C11 Atomics
Dev.to · NARESH-CN2 3mo ago
Hardening a 1P/3C Broadcast Engine: Achieving 33.92M records/s with C11 Atomics
Most high-volume data pipelines suffer from a hidden "Abstraction Tax." When you move telemetry...
7.22M Logs/Sec on a Laptop: Beating the "Abstraction Tax" with C11 Atomics
Dev.to · NARESH-CN2 3mo ago
7.22M Logs/Sec on a Laptop: Beating the "Abstraction Tax" with C11 Atomics
I’ve been obsessed with the "Abstraction Tax" lately—the massive performance hit we take when we...
Bypassing the "Pandas RAM Tax": Building a Zero-Copy CSV Extractor in C
Dev.to · NARESH-CN2 📊 Data Analytics & Business Intelligence ⚡ AI Lesson 3mo ago
Bypassing the "Pandas RAM Tax": Building a Zero-Copy CSV Extractor in C
The Convenience Penalty Python is a masterpiece of productivity, but for high-volume data ingestion,...
Abolishing the "Python Tax": How I hit $3.06 \text{ GB/s}$ CSV Ingestion in C 🧱🔥
Dev.to · NARESH-CN2 ⚡ AI Lesson 3mo ago
Abolishing the "Python Tax": How I hit $3.06 \text{ GB/s}$ CSV Ingestion in C 🧱🔥
Standard Python data processing (Pandas/CSV) is often plagued by what I call the "Object Tax"—the...
Stop Paying the "Python Object Tax": 10M Rows in 0.08s with C and Parallel mmap
Dev.to · NARESH-CN2 📐 ML Fundamentals ⚡ AI Lesson 3mo ago
Stop Paying the "Python Object Tax": 10M Rows in 0.08s with C and Parallel mmap
I was benchmarking some data ingestion pipelines on my Nitro 16 (Ryzen 7) and honestly got pretty...
How to Bypass the Pandas "Object Tax": Building an 8x Faster CSV Engine in C
Dev.to · NARESH-CN2 📊 Data Analytics & Business Intelligence ⚡ AI Lesson 3mo ago
How to Bypass the Pandas "Object Tax": Building an 8x Faster CSV Engine in C
The Problem: The "Object Tax"If you’ve ever tried to load a 1GB CSV into a Pandas DataFrame, you’ve...
How I cut Python JSON memory overhead from 1.9GB to ~0MB (11x Speedup)
Dev.to · NARESH-CN2 ⚡ AI Lesson 3mo ago
How I cut Python JSON memory overhead from 1.9GB to ~0MB (11x Speedup)
The Problem: The "PyObject" TaxWe all love Python for its developer velocity, but for high-scale data...
Python was too slow for 10M rows—So I built a C-Bridge (and found the hidden data loss)
Dev.to · NARESH-CN2 📐 ML Fundamentals ⚡ AI Lesson 3mo ago
Python was too slow for 10M rows—So I built a C-Bridge (and found the hidden data loss)
The Challenge: The 1-Second Wall In high-volume data engineering, "fast enough" is a...