Locate Empty Directories from Command Line
As a software engineer that lives too much of his life on a computer, I like keeping my machine as clean as possible.  I don't keep rogue downloaded files and removes apps when I don't need them.  Part of keeping a clean, performant system is removing empty directories.
To identify empty directories, I use the following command:
find . -type d --empty
To remove empty directories, we can add a --delete flag:
find . -type d --empty --delete
 
Keeping a clean machine is easy when you know the tools that can help you.  find makes identifying and eliminating easy, so don't be afraid to use it!
![CSS 3D Folding Animation]()
Google Plus provides loads of inspiration for front-end developers, especially when it comes to the CSS and JavaScript wonders they create.  Last year I duplicated their incredible PhotoStack effect with both MooTools and pure CSS;  this time I'm going to duplicate...
![5 HTML5 APIs You Didn’t Know Existed]()
When you say or read "HTML5", you half expect exotic dancers and unicorns to walk into the room to the tune of "I'm Sexy and I Know It."  Can you blame us though?  We watched the fundamental APIs stagnate for so long that a basic feature...
![Drag and Drop Z-Index Stacking]()
![Multiple Backgrounds with CSS]()
Anyone that's been in the web development industry for 5+ years knows that there are certain features that we should have had several years ago.  One of those features is the HTML5 placeholder;  we used JavaScript shims for a decade before placeholder came...
A minor change as it should have a single ‘-‘ on the empty predicate: