Skipping First Occurrence in Repeat Schedule
is there a way to skip the first occurrence of a repeat? like I want this
to not run on startup, only when the schedule says it should run
to not run on startup, only when the schedule says it should run
const cron = Effect.repeat(
pipe(
Effect.sync(() => new Date()),
Effect.flatMap((d) => Console.log("it's an even number of minutes!", d)),
),
Schedule.cron("*/2 * * * *"),
);