Code Mala Tang
Author

Code Mala Tang

Read source code together, write articles together, and enjoy spicy hot pot together.

493
Articles
0
Likes
2.2k
Views
0
Comments
Recent Articles

Latest from Code Mala Tang

100 recent articles max
Code Mala Tang
Code Mala Tang
Mar 1, 2026 · Artificial Intelligence

Why YOLO Dominates Real-Time Object Detection: A Complete Guide

This article provides a comprehensive overview of the YOLO (You Only Look Once) algorithm, explaining its core principles, architecture, version history, training workflow, real‑world applications, strengths, and current limitations for modern computer‑vision tasks.

YOLOcomputer visiondeep learning
0 likes · 9 min read
Why YOLO Dominates Real-Time Object Detection: A Complete Guide
Code Mala Tang
Code Mala Tang
Feb 25, 2026 · R&D Management

Can AI Agents Keep Your Specs Up‑to‑Date Without Human Docs?

The article argues that traditional documentation quickly becomes obsolete and proposes a self‑updating specification workflow where both developers and AI agents read and write the spec, eliminating hidden maintenance work and keeping the plan aligned with reality.

AI AgentsSpecification-Driven Developmentautomation
0 likes · 5 min read
Can AI Agents Keep Your Specs Up‑to‑Date Without Human Docs?
Code Mala Tang
Code Mala Tang
Feb 24, 2026 · Backend Development

Why Async FastAPI Still Blocks and How to Offload Heavy Work

After fixing unlimited queries and pagination issues, this article reveals why async FastAPI still stalls under load, outlines the hidden bottlenecks in the request lifecycle, and provides practical rules and code examples for offloading heavy work to background workers, ensuring scalability, idempotence, and observability.

AsyncFastAPIbackground tasks
0 likes · 9 min read
Why Async FastAPI Still Blocks and How to Offload Heavy Work
Code Mala Tang
Code Mala Tang
Feb 22, 2026 · Backend Development

Why FastAPI Slows Down with Millions of Rows—and How to Keep It Fast

FastAPI feels lightning‑fast on small datasets, but returning millions of rows can exhaust memory, block the event loop, and cripple the database; this article explains why that happens and provides concrete design rules—selective fields, pagination, cursor‑based queries, streaming, and chunked processing—to keep APIs stable at scale.

FastAPIPaginationStreaming
0 likes · 9 min read
Why FastAPI Slows Down with Millions of Rows—and How to Keep It Fast
Code Mala Tang
Code Mala Tang
Feb 21, 2026 · Artificial Intelligence

Mastering Cursor AI Agents: Best Practices for Efficient Code Generation

This guide explains how to harness Cursor's AI agents for software development by covering agent harness components, planning modes, context management, rule and skill extensions, long‑running loops, image handling, common workflows like TDD and Git integration, parallel execution, cloud delegation, and debugging strategies.

AI AgentsBest PracticesCursor
0 likes · 20 min read
Mastering Cursor AI Agents: Best Practices for Efficient Code Generation
Code Mala Tang
Code Mala Tang
Feb 21, 2026 · Frontend Development

How WebMCP Redefines Browser‑AI Interaction: From Fragile Scraping to Structured Tools

WebMCP, a new browser‑level Model Context Protocol co‑developed by Google and Microsoft, replaces fragile visual scraping with a structured API that lets websites expose tools directly to AI agents, dramatically improving token efficiency, reliability, and security while raising new implementation and safety challenges.

AIBrowserFrontend
0 likes · 16 min read
How WebMCP Redefines Browser‑AI Interaction: From Fragile Scraping to Structured Tools
Code Mala Tang
Code Mala Tang
Feb 21, 2026 · Backend Development

10 Common Pitfalls When Streaming JSON in Node.js and Safer Patterns

This guide enumerates ten frequent traps encountered when streaming JSON in Node.js—such as assuming one chunk per object, UTF‑8 split issues, missing newline delimiters, back‑pressure overload, and handling of large numbers—and presents reliable patterns like using NDJSON framing, StringDecoder, pipeline, and proper error handling to avoid data loss and memory spikes.

JSONNDJSONNode.js
0 likes · 13 min read
10 Common Pitfalls When Streaming JSON in Node.js and Safer Patterns