- Does it support all cron dialects?
- Standard 5-field Unix cron, plus 6-field with seconds (Quartz, Spring), and special strings (@hourly, @daily). The dialect is auto-detected from the input.
- What's the max future runs it shows?
- Next 10 runs by default. Toggle up to 100 to spot seasonal patterns or check year-boundary behavior (February 29, daylight savings).
- What about timezones?
- The parser assumes UTC by default. Toggle to your local timezone to check when a job will actually fire from your perspective. DST shifts are handled.
- Does it validate the expression?
- Yes — out-of-range values (`60 * * * *`, `* * 32 * *`) get clear error messages. Much better than the 'it silently never fires' mode of real cron.