Cycle Tempos and Phasing?

Wow, well awesome. There's my answer thank you!

If I wanted patterns to phase out of time using slow, but then slam back in sync at some point then I assume that I could use either resetCycles or maybe trigger 1? Both of those cause a hiccup when they're evaluated though as they're apparently not being quantized to tempo. I assumed that this would work but it also hiccups:

do
  d1 $ trigger 1 $ slow 1.01 $ s "bd*8"
  d2 $ trigger 1 $ s "hh*8" 

It seems that what I want is the functionality of a trigger 1 and a resetCycles combo?
Talking out loud here so hopefully this makes sense lol.

Thanks again.

EDIT: Alex's new video answered my question!
qtrigger will bring them back into phase quantized to the start of the next cycle:

do
  d1 $ qtrigger 1 $ slow 1.01 $ s "bd*8"
  d2 $ qtrigger 1 $ s "hh*8" # pan 0.7
6 Likes