CSS Newb: Styling forms

Petr Stanicek: Styling Form Fieldsets, Legends and Labels

Previously.

— September 19, 2006

How to lose your fear of being fired

Positive Sharing: 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...

— September 19, 2006

Don't Swallow InterruptedException

Michael Scharf: Don't swallow InterruptedException. Call Thread.currentThread().interrupt() instead.

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.

— September 19, 2006