Hi HN!
I built NaturalCron because I was tired of writing and debugging CRON syntax like:
/5 * * 5
Now you can write something human-readable in .NET:
var expression = new NaturalCronExpression("every 5 minutes on friday");
Or use a Fluent Builder for strong typing and IDE support:
var expression = NaturalCronExpressionBuilder .Every().Minutes(5) .On(DayOfWeek.Friday) .Build();
Great for: - Code-based scheduling in .NET apps - Overriding schedules from configs or databases - Displaying easy-to-read rules in UIs
NuGet: https://www.nuget.org/packages/NaturalCron GitHub: https://github.com/hugoj0s3/NaturalCron
Would love your feedback on syntax, builder design, and what features you'd like to see next!
Comments URL: https://news.ycombinator.com/item?id=44767304
Points: 13
# Comments: 1
Melden Sie sich an, um einen Kommentar hinzuzufügen
Andere Beiträge in dieser Gruppe

Article URL: https://pixieditor.net/blog/2025/07/30/20-release/

Article URL: https://arxiv.org/abs/2507.12547
Comments URL: https://news.ycombinator.c

Article URL: https://github.com/WICG/html-in-canvas
Comments URL: https://news.y
Article URL: https://www.nytimes.com/2025/07/31/technology/ai-researchers-nba-stars.html
Comments U
Article URL: https://forums.anandtech.com/
Comments URL: https://news.ycombinator.com/ite
Article URL: https://twey.io/for-programmers/linear-types/