Hello! This was once a Wordpress Blog, but one needs only one blog in their life.

Visit Current Blog

Meanwhile, here are some favourite coding tips as promised..


Javascript Debugging

Ever wonder what exactly in your digital machine called a given function?

 
function whyIsThisFiringRightNow(){
	console.log("This was invoked by: " + whyIsThisFiringRightNow.caller);
}