I was tackling a Fibonacci problem on LeetCode recently. My recursive solution timed out immediately. Looking for an online tool to verify my optim…
Posts for: #Generator
Nginx Config Generator: From Manual Editing to Automation
Last week I configured Nginx for a new project and hit the same old pitfalls. Wrong SSL certificate paths, missing gzip types, forgotten security h…
Mind Map Generator: From Text Parsing to SVG Visualization
Published: May 8, 2026, 08:10
Building a Meta Tag Generator: Open Graph, Twitter Card, and SEO Optimization
When I added sharing functionality to a project recently, I noticed that the preview images on WeChat and Twitter were always wrong. After digging …
Building a Perfect Maze Generator with DFS Recursive Backtracker
Maze generation is one of those problems that looks simple until you actually implement it. I recently built an online maze generator on [JsonKit](…
Markdown Table Generator: From String Concatenation to Real-time Preview
What’s the most annoying part of writing technical documentation? Tables. Markdown’s table syntax is simple but tedious. Manually typing | and `-…
PWA Essentials: Web App Manifest Configuration Guide and Generator Implementation
Recently converted a web app to PWA for app store submission. Web App Manifest seemed simple at first, but the details caught me off guard. Built a…
The Algorithm Behind Lorem Ipsum Generators: From Latin to Chinese Random Text
When mocking up designs, we often need placeholder text. Photoshop has Lorem Ipsum built in, and frontend developers need dummy text for layout tes…
CSS Loading Animation Generator: From Keyframes to Performance Optimization
A deep dive into CSS loading animations: keyframe principles, timing-function curves, GPU acceleration, and implementations of four classic spinn…
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 …