Java, .NET, Ubuntu, Tomcat, Apache, Cloud Computing, JQuery, UI Design, Architecture, Martin Fowler, Domain Driven Development, and everything else...

Hey guys… hows the demo?

Posted: August 25th, 2011 | Author: Terrance A. Snyder | Filed under: Uncategorized | 8 Comments »

Probably stinks right?!


Jquery – Aristo Theme

Posted: April 10th, 2011 | Author: Terrance A. Snyder | Filed under: UI Design, Visualization | 2 Comments »

My compliant for a long time about Jquery UI is that it lacks polish. Their themes have a way of making me flinch. That ended today when I stumbled upon the below theme.

http://taitems.github.com/Aristo-jQuery-UI-Theme/

Autocomplete

autocomplete

Buttons

buttons

Slider

slider

Progress Bar

progressbar

Tabs

tabs

Calendar

calendar


Remove directories recursively

Posted: December 25th, 2010 | Author: Terrance A. Snyder | Filed under: Linux | 2 Comments »

Brushing off those linux skills…

find -type d -name data -exec rm -rf '{}' +

Remove all directories (recursively) that match the specified name. Useful for SVN too…

find -type d -name .svn -exec rm -rf '{}' +