I have two notebooks open, one has a dynamic expression running (a simple clock)
Dynamic[{d, h, m, s} = List @@ DateDifference[Now, DateObject[{2015, 5, 18}], {"Day", "Hour", "Minute", "Second"}][[1]]; Grid[Transpose @ {{"d", d}, {"h", h}, {"m", m}, {"s", Round@s}}, Alignment -> Left], UpdateInterval -> 1] And while this is running, it interferes strongly with the Dynamic expression in my other notebook, even when the notebook is offscreen or minimized. Is there any safeguard for these dynamics bringing the frontend to a crawl?
LaunchKernels[2]. $\endgroup$