How do you schedule tweets in a bot using JavaScript's setInterval() function? How do you trigger a tweet when a certain event occurs like a user is followed or a tweet is favorited?
The 4+ ms obligatory delay between invocations comes into play. The similar thing happens if we use `setInterval` instead of `setTimeout`: `setInterval (f)` runs `f` few times with zero-delay, and ...