Get all terms, including unchecked, or get the terms outside loop

Ah, my fault I got it, the all important hide_empty=0

Get terms

<?php
    $taxonomies=get_taxonomies('','object'); 
    foreach($taxonomies as $tax){
        echo "<h2>$tax->name</h2>";
        $terms = get_terms( $tax->name, 'orderby=count&hide_empty=0' );
        foreach($terms as $term){
            print_a($term->name);
        }
    }
?>