Submit Button Enabling
"Enabling" you ask?  Yes.  We all know how to disable the submit upon form submission and the reasons for doing so, but what about re-enabling the submit button after an allotted amount of time.  After all, what if the user presses the "stop" button immediately after submitting the form?  They'd be screwed.  Why not re-enable the submit button after an allotted amount of time so that the user may re-submit?
The MooTools JavaScript
window.addEvent('domready',function() {
		var subber = $('submit');
		subber.addEvent('click',function() {
			subber.set('value','Submitting...').disabled = true;
			(function() { subber.disabled = false; subber.set('value','Resubmit'); }).delay(10000); // how much time?  10 seconds
		});
	});
Of course, this isn't ideal in all situations.  It is, however, a nice touch if your system can accommodate for it.
Update:  Upon submission, the button's message changes to "submitting..." and once enabled, the message changes to "Resubmit."  Thank you to Facundo Corradini for the suggestion!
![Regular Expressions for the Rest of Us]() - Sooner or later you'll run across a regular expression. With their cryptic syntax, confusing documentation and massive learning curve, most developers settle for copying and pasting them from StackOverflow and hoping they work. But what if you could decode regular expressions and harness their power? In... 
![CSS Filters]() - 
CSS filter support recently landed within WebKit nightlies.  CSS filters provide a method for modifying the rendering of a basic DOM element, image, or video.  CSS filters allow for blurring, warping, and modifying the color intensity of elements.  Let's have... 
![Animated Progress Bars Using MooTools: dwProgressBar]() - 
I love progress bars.  It's important that I know roughly what percentage of a task is complete.  I've created a highly customizable MooTools progress bar class that animates to the desired percentage.
The Moo-Generated XHTML
This DIV structure is extremely simple and can be controlled... 
![Animated 3D Flipping Menu with CSS]() - 
CSS animations aren't just for basic fades or sliding elements anymore -- CSS animations are capable of much more.  I've showed you how you can create an exploding logo (applied with JavaScript, but all animation is CSS), an animated Photo Stack, a sweet...