Introducing EDA Prompt Generator: Domain-Specific Prompts for Chip Design & Verification

As a chip verification engineer, I ask LLMs for help constantly — draft a UVM sequence, explain a CDC violation, sanity-check an SDC constraint, summarize a synthesis timing report. The problem is that general-purpose chatbots have no idea what a good EDA prompt looks like. Every time, I was manually writing the same scaffolding: who the model should act as, what technical context it needs, what the actual task is, what constraints apply, and what shape the output should take. Redoing that by hand for every question gets old fast. So I built EDA Prompt Generator to automate that scaffolding — you type a short EDA requirement, it hands back a structured, professional prompt ready to paste into whatever model you’re using. ...

July 3, 2026 · 4 min · Chen Shuaiming

How to Install OpenAI Codex CLI on Ubuntu

Codex CLI is OpenAI’s lightweight coding agent that runs directly in your terminal. It reads your codebase, executes shell commands, edits files, runs tests, debugs issues — all through natural language. Think of it as ChatGPT natively integrated into your terminal workflow. This guide covers every installation method on Ubuntu, from beginner-friendly to advanced. ...

June 29, 2026 · 5 min · Chen Shuaiming

Connect OpenClaw to WeChat: The 5-Minute Setup

Want your AI assistant on WeChat? Here’s how to hook OpenClaw up to WeChat (Weixin) in a few minutes. Prerequisites OpenClaw installed (openclaw --version) A WeChat account that can scan QR codes Step 1: Install the Plugin Quick install (recommended): npx -y @tencent-weixin/openclaw-weixin-cli install Or manual: openclaw plugins install "@tencent-weixin/openclaw-weixin" openclaw config set plugins.entries.openclaw-weixin.enabled true Step 2: QR Login openclaw channels login --channel openclaw-weixin A QR code appears in your terminal. Scan it with WeChat on your phone, confirm — done. The token is saved locally. ...

June 16, 2026 · 2 min · Chen Shuaiming