Tracing available variables in template file

I often forget this one, if you need to see what available variables are in some specific template file of any contributed module you will write this on top of the tpl file

<pre> <?php print_r(get_defined_vars());?></pre>

and will get a nice list of variables you can use.