Built two free tools that convert plain English to code syntax:
CronAI — Describe your schedule, get a cron expression.
"Every weekday at 9am" becomes 0 9 * * 1-5
Try it: cronai-nu.vercel.app
RegexAI — Describe what you want to match, get a regex pattern.
"Match email addresses" becomes /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g
Try it: regexai-six.vercel.app
Both are free, instant, and require no signup. Built with Next.js and Claude API, deployed on Vercel.
Top comments (0)