What I did at work today

Apr 24 2009

Name all functions, especially ones that are typically anonymous:

$("a").click(function linkClickHandler(e) {
	$("b").each(function bIterator() {
		// an error or expensive operation happens here
	});
});

Your stack traces and profiling logs become much more descriptive. (via)

Page 1 of 1