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 30, 2026 · Artificial Intelligence

Integrate OpenAI Codex into Claude Code: A Complete Plugin Guide

This guide explains how to install and use the OpenAI Codex plugin for Claude Code, covering setup commands, core review functions, optional review gates, and practical scenarios where the plugin provides a seamless AI‑powered second opinion within your coding workflow.

AIClaude CodeCodex
0 likes · 5 min read
Integrate OpenAI Codex into Claude Code: A Complete Plugin Guide
Code Mala Tang
Code Mala Tang
Mar 30, 2026 · Frontend Development

Mastering New CSS Viewport Units: lv, sv, and dv for Mobile Layouts

This article explains why the traditional 100vh unit fails on mobile browsers, introduces the three new CSS viewport unit families (large, small, and dynamic), and provides practical code examples and guidance for choosing the right unit in responsive web designs.

FrontendMobile WebViewport Units
0 likes · 10 min read
Mastering New CSS Viewport Units: lv, sv, and dv for Mobile Layouts
Code Mala Tang
Code Mala Tang
Mar 28, 2026 · Operations

How Git Worktree Enables Parallel Agent‑Driven Development

This article explains a structured workflow that uses git worktree to run multiple independent worktrees for parallel agent execution, detailing the three‑step process, bottlenecks, and a bash orchestration script for managing front‑end and API worktrees in a multi‑repo environment.

Agent automationGitparallel-development
0 likes · 9 min read
How Git Worktree Enables Parallel Agent‑Driven Development
Code Mala Tang
Code Mala Tang
Mar 28, 2026 · Artificial Intelligence

What Is Harness Engineering? A Deep Dive into AI Agent System Design

Harness Engineering is the emerging discipline that unifies Prompt Engineering, Context Engineering, and system-level controls to create robust, maintainable AI agent pipelines, illustrated with real-world performance gains, architectural patterns, and practical guidelines for building scalable AI‑driven workflows.

AI AgentsAI productivityContext Engineering
0 likes · 12 min read
What Is Harness Engineering? A Deep Dive into AI Agent System Design
Code Mala Tang
Code Mala Tang
Mar 28, 2026 · Artificial Intelligence

How MiniMax M2.7 Achieves SOTA Agent Performance Through Self‑Evolving Loops

MiniMax M2.7 is a self‑evolving LLM that combines a persistent Agent Harness, multi‑level memory, and autonomous improvement cycles to reach SOTA benchmark scores, cost efficiency, and real‑world software‑engineering capabilities, illustrating the emerging skill‑economy of agent ecosystems.

Artificial IntelligenceBenchmarkingSelf-Improving Models
0 likes · 13 min read
How MiniMax M2.7 Achieves SOTA Agent Performance Through Self‑Evolving Loops
Code Mala Tang
Code Mala Tang
Mar 28, 2026 · Artificial Intelligence

Can Claude Translate the Linux Kernel to Rust? Insights, Experiments, and Costs

This article evaluates Claude's ability to translate isolated Linux kernel modules from C to Rust, presenting a detailed analysis of translation granularity, token costs, experimental results on drivers, networking, and file‑system modules, and discussing the technical and economic challenges of a full kernel rewrite.

AILLMRust
0 likes · 19 min read
Can Claude Translate the Linux Kernel to Rust? Insights, Experiments, and Costs
Code Mala Tang
Code Mala Tang
Mar 27, 2026 · Artificial Intelligence

What Is Harness Engineering and Why It Matters for AI Development

Harness Engineering is the emerging discipline that integrates Prompt Engineering, Context Engineering, and system-level controls to create reliable, maintainable AI‑generated code, and the article analyzes its origins, key components, real‑world performance data, and practical guidelines for building effective AI harnesses.

AI developmentHarness EngineeringPrompt Engineering
0 likes · 12 min read
What Is Harness Engineering and Why It Matters for AI Development
Code Mala Tang
Code Mala Tang
Mar 27, 2026 · Industry Insights

Why the Real GPU Shortage Is About Low Utilization, Not Supply

The article reveals that the perceived AI‑GPU shortage stems from misleading utilization metrics and wasted capacity, not actual supply constraints, and argues that better measurement and orchestration—not buying more hardware—will determine competitive advantage in the emerging AI infrastructure market.

GPU UtilizationOrchestrationindustry analysis
0 likes · 9 min read
Why the Real GPU Shortage Is About Low Utilization, Not Supply
Code Mala Tang
Code Mala Tang
Mar 25, 2026 · Fundamentals

How to Build a gzip Decompressor in Rust – Inside DEFLATE, Huffman & LZ77

The article walks through creating a compact 250‑line Rust gzip decompressor from scratch, explaining gzip’s header, DEFLATE block types, bit‑reading logic, Huffman coding, and LZ77 back‑references, and shows how to test it with real compressed data, highlighting key implementation challenges and trade‑offs.

DEFLATEHuffmanLZ77
0 likes · 14 min read
How to Build a gzip Decompressor in Rust – Inside DEFLATE, Huffman & LZ77