<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: yingyi.ma</title>
    <description>The latest articles on DEV Community by yingyi.ma (@_9d0103be1263f13ec21d5).</description>
    <link>https://dev.to/_9d0103be1263f13ec21d5</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3888290%2Fba458b10-7bad-4c51-9463-32913ad3e592.jpg</url>
      <title>DEV Community: yingyi.ma</title>
      <link>https://dev.to/_9d0103be1263f13ec21d5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/_9d0103be1263f13ec21d5"/>
    <language>en</language>
    <item>
      <title>I built a natural language cron expression generator – looking for feedback</title>
      <dc:creator>yingyi.ma</dc:creator>
      <pubDate>Mon, 20 Apr 2026 05:53:08 +0000</pubDate>
      <link>https://dev.to/_9d0103be1263f13ec21d5/i-built-a-natural-language-cron-expression-generator-looking-for-feedback-5hbk</link>
      <guid>https://dev.to/_9d0103be1263f13ec21d5/i-built-a-natural-language-cron-expression-generator-looking-for-feedback-5hbk</guid>
      <description>&lt;p&gt;As a backend developer, every time I write a scheduled job I go through this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Figure out the schedule (e.g. "every Monday at 9am")&lt;/li&gt;
&lt;li&gt;Google "cron expression syntax"&lt;/li&gt;
&lt;li&gt;Open crontab.guru to verify&lt;/li&gt;
&lt;li&gt;Copy the expression, then look up Kubernetes CronJob YAML format&lt;/li&gt;
&lt;li&gt;Look up GitHub Actions cron syntax separately&lt;/li&gt;
&lt;li&gt;Repeat for Jenkins, Airflow...&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is tedious. So I built &lt;strong&gt;Hey Cron&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;Type a plain English (or Chinese) description of your schedule, and Hey Cron instantly generates ready-to-use configs for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚙️ Kubernetes CronJob&lt;/li&gt;
&lt;li&gt;🐙 GitHub Actions&lt;/li&gt;
&lt;li&gt;🔧 Jenkins Pipeline&lt;/li&gt;
&lt;li&gt;🌊 Apache Airflow&lt;/li&gt;
&lt;li&gt;🖥️ Linux crontab&lt;/li&gt;
&lt;li&gt;🟢 Node.js (node-cron)&lt;/li&gt;
&lt;li&gt;🐍 Python (APScheduler)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Input: "every Monday at 9am"&lt;/p&gt;

&lt;p&gt;Output:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cron: &lt;code&gt;0 9 * * 1&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Kubernetes: &lt;code&gt;schedule: "0 9 * * 1"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;GitHub Actions: &lt;code&gt;cron: '0 9 * * 1'&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;And more...&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why not just use ChatGPT?
&lt;/h2&gt;

&lt;p&gt;You can. But Hey Cron is faster for this specific task – no context needed, output is always correctly formatted, and you get all platforms at once.&lt;/p&gt;

&lt;h2&gt;
  
  
  Status
&lt;/h2&gt;

&lt;p&gt;Currently in development. I'm validating demand before building the full product.&lt;/p&gt;

&lt;p&gt;If this solves a real pain point for you, join the waitlist at &lt;strong&gt;&lt;a href="https://www.heycron.com" rel="noopener noreferrer"&gt;heycron.com&lt;/a&gt;&lt;/strong&gt; – I'll notify you when it launches.&lt;/p&gt;

&lt;p&gt;Would love honest feedback: is this useful, or do you handle cron expressions differently?&lt;/p&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
      <category>webdev</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
