How to lose your fear of being fired
#
Some of the "how to" seems to involve simply having enough money not to worry about it. Which isn't necessarily an option for everyone...
Don't Swallow InterruptedException
#
Doing nothing with the exception restores the interrupted flag to false. Calling Thread.currentThread().interrupt() keeps the flag set to true so you can do something about it. I did not know this.