Code Mala Tang
Author

Code Mala Tang

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

451
Articles
0
Likes
1.4k
Views
0
Comments
Recent Articles

Latest from Code Mala Tang

100 recent articles max
Code Mala Tang
Code Mala Tang
Feb 17, 2026 · Artificial Intelligence

Master Claude Code: Proven Strategies to Supercharge Your Development Workflow

This guide explores how to harness Claude Code effectively by structuring prompts, using CLAUDE.md, managing context windows, creating reusable skills and commands, handling stuck situations, and even running the model locally with Ollama for a powerful, self‑contained coding assistant.

Claude CodeContext Managementlocal models
0 likes · 15 min read
Master Claude Code: Proven Strategies to Supercharge Your Development Workflow
Code Mala Tang
Code Mala Tang
Feb 17, 2026 · Backend Development

How to Build a High‑Throughput HTTP Server with Node.js

This article explains what high‑throughput means for an HTTP server, why Node.js’s event‑driven, non‑blocking architecture makes it ideal, and provides step‑by‑step code examples—including a basic server, blocking vs. async I/O, clustering, keep‑alive, JSON optimization, and streaming—to help developers design scalable, low‑latency services.

HTTPHigh ThroughputNode.js
0 likes · 8 min read
How to Build a High‑Throughput HTTP Server with Node.js
Code Mala Tang
Code Mala Tang
Jan 7, 2026 · Fundamentals

When to Use Git Rebase vs Merge: Avoid Losing Code

This article explains the core differences between git rebase and git merge, illustrates how each rewrites or preserves commit history with concrete command examples, outlines safe usage scenarios, and provides practical tips to prevent code loss during collaborative development.

Gitcode safetymerge
0 likes · 6 min read
When to Use Git Rebase vs Merge: Avoid Losing Code
Code Mala Tang
Code Mala Tang
Jan 5, 2026 · Frontend Development

Mastering Browser Blobs: Create, Use, and Optimize Blob URLs

This guide explains what a Blob is, how to create it with JavaScript, generate and manage temporary Blob URLs, compare it with Base64 and ArrayBuffer, and apply best‑practice patterns for previewing, downloading, and streaming large files in modern web applications.

BlobFile APIJavaScript
0 likes · 7 min read
Mastering Browser Blobs: Create, Use, and Optimize Blob URLs
Code Mala Tang
Code Mala Tang
Jan 2, 2026 · Frontend Development

Boost Web App Performance with Web Workers: A Practical Guide

This article explains how JavaScript's single‑threaded nature can freeze UI during heavy calculations and shows step‑by‑step how to offload work to Web Workers, integrate external libraries, configure build tools, and follow best practices for smooth, responsive web applications.

JavaScriptPerformanceWeb Workers
0 likes · 10 min read
Boost Web App Performance with Web Workers: A Practical Guide
Code Mala Tang
Code Mala Tang
Jan 2, 2026 · Frontend Development

Master Async Data Handling in JavaScript with Array.fromAsync

This guide explains how the new JavaScript Array.fromAsync() method converts async iterables, streams, or paginated API responses into clean arrays, offering clear syntax, practical use‑cases, and step‑by‑step code examples for front‑end developers.

APIArray.fromAsyncAsync
0 likes · 5 min read
Master Async Data Handling in JavaScript with Array.fromAsync
Code Mala Tang
Code Mala Tang
Dec 31, 2025 · Fundamentals

8 Underrated TypeScript Features That Can Save Your Code

This article showcases eight often‑overlooked TypeScript capabilities—discriminated unions, as const,{ } tuples, template literal types, keyof + typeof, strict mode, noUncheckedIndexedAccess, and type augmentation—each with concrete examples and practical guidance on how they improve type safety and reduce boilerplate.

TypeScriptas constdiscriminated unions
0 likes · 7 min read
8 Underrated TypeScript Features That Can Save Your Code
Code Mala Tang
Code Mala Tang
Dec 28, 2025 · Fundamentals

How to Find the Longest Substring Without Repeating Characters in O(n)

This article explains the problem of finding the longest substring without repeating characters, demonstrates a brute‑force O(n³) solution with code, then introduces an optimized sliding‑window approach that runs in linear time O(n), including detailed implementation, complexity analysis, and key insights.

Sliding Windowalgorithmbrute force
0 likes · 5 min read
How to Find the Longest Substring Without Repeating Characters in O(n)