On Fri, 9 Jan 2026 12:15:44 -0500 "Ian! D. Allen via Remind-fans" <[email protected]> wrote:
> I think I have to do separate REM lines for "SECOND" and "FOURTH" > and I hate writing stuff twice; got a one-liner for this? As Tim Chase posted, you can do it with SATISFY. You can do pretty much anything with SATISFY. However, in my opinion, it is less ugly to repeat the REM lines than to have an opaque thing like: REM Sunday SATISFY [$Td > 7 && $Td <= 14 || $Td > 21 && $Td <=28] MSG Blah... You could make it a bit more readable with: FSET is_second_or_fourth(x) x > 7 && x <= 14 || x > 21 && x <= 28 REM Sunday SATISFY [is_second_or_fourth($Td)] MSG Blah... but then you're back to a two-liner. Regards, Dianne. _______________________________________________ Remind-fans mailing list [email protected] https://dianne.skoll.ca/mailman/listinfo/remind-fans Remind is at https://dianne.skoll.ca/projects/remind/
