[HN Gopher] Show HN: NaturalCron - Human-Readable Scheduling for...
       ___________________________________________________________________
        
       Show HN: NaturalCron - Human-Readable Scheduling for .NET (With
       Fluent Builder)
        
       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!
        
       Author : hugoj0s3
       Score  : 13 points
       Date   : 2025-08-02 13:09 UTC (9 hours ago)
        
 (HTM) web link (github.com)
 (TXT) w3m dump (github.com)
        
       | BryanLegend wrote:
       | How flexible is the syntax? Can I write whatever and have a
       | chance it parses correctly?
        
       ___________________________________________________________________
       (page generated 2025-08-02 23:00 UTC)