const schedule = pipe(
spaced(millis(1000)),
tapOutput((n) => logDebug(`Attempting again... ${n}`)),
intersect(recurs(30))
);
const schedule = pipe(
spaced(millis(1000)),
tapOutput((n) => logDebug(`Attempting again... ${n}`)),
intersect(recurs(30))
);