tree is one of my favorite Linux commands. While ls only shows one level, tree lets you see the entire directory structure at a glance—it’s i…
Posts for: #Json
jq: The Swiss Army Knife for JSON Processing
When processing JSON on the command line, many reach for grep with regex or write a quick Python one-liner. But jq, designed specifically for J…
Linux cp Command: File Copying Internals and Advanced Techniques
Published: 2026-05-12
Deep Dive into Linux cat Command: From File Viewing to Low-Level Implementation
Published: May 12, 2026
From HMAC Signing to Web Crypto API: Building a Browser-Based JWT Generator
When working on frontend-backend separation projects, I often need to construct JWT tokens for API debugging. Asking backend colleagues every time …
Structured Data in Practice: Building a JSON-LD Generator for SEO
When working on website SEO, you often hear about “structured data”. Simply put, it’s a machine-readable format to tell search engines: this is a p…
JSON Validator Implementation: From Syntax Parsing to Error Location
When debugging API responses, the most frustrating thing is JSON format errors. The console throws Unexpected token with just a character positio…
JSON Tree Editor: Recursive Rendering and Two-Way Sync
Working with complex JSON data recently, plain text editing wasn’t cutting it. I needed a visual tree editor where I could add, delete, and modify …
JSON to Table: From Data Structure to Interactive Tables
When working with JSON data, staring at raw structures can be overwhelming—especially when nested objects and arrays are mixed together. Converting…
JSON to SQL Batch Insert: From Escape Traps to Performance Optimization
Recently worked on a data migration project, importing API JSON data into MySQL. Seemed simple at first—just map JSON fields to SQL statements, rig…