You're picking nits frankly. The system can be useful. But it does deadlock and/or cause delays if your output program stops reading from the pipe temporarily or permanently. The deadlocked secondprogram was just a simple example of when this happens.
This sort of behavior is a rare case. It is far from rare though in a less degenerate form. In the very simple case of displaying text on the command line you will fill your output buffer all the time, but with the flushes, you'll vastly slow the program down to the speed of text display in your terminal as you make all text output every time, as opposed to just when the buffer display program runs.
Which do you think will run faster: Cat without those flushes or cat with those flushes?
This technique is not universally applicable, as the article says. It does not fit all cases. It has costs.
It does also have applications. But it's not the suggested universal technique.
You can do other things....like say, print out on stderr that there is a problem after a certain timeout, email technical support, or restart the second program.