Any program I make has two stages it can be in: using as much of the processor as possible, and blocking, waiting for input. Now I have programs on my computer, things like Backblaze, which run gradually in the background (though with some occasional spikes when encrypting files). What are some good ways to make a program run slowly and unnoticeable? The only thing I could think of would be to fill it with sleep statements, which seems awfully inefficient. I'm not asking about a specific language here, just some general theory.
Any thoughts?