![]() |
Genre: indie, acoustic Rating: Check Out: “Black Lungs,” “Strangers,” “Walking on Stones,” and “Spirit and Skin.” myspace |
The world has thousands of pithy statements about how healing can come from pain, but I’d never heard all of them put to music until I stumbled across Mending. As the debut full-length from a Dallas, TX band, I was only expecting to find a few good acoustic songs and a lot of twanging about lost love. Instead, I found a subtle masterpiece that seems even more masterful when I remind myself that the arrangements are so simplistic, they’re almost non-existent in certain parts.
This harmony between music and lyrics is so very hard to find, but The New Frontiers has managed to do it in their first time. There isn’t a song on this album that didn’t hold me captivated from the first note. If you’re always looking for the next ‘new thing,’ The New Frontiers and Mending is definitely IT.
Tags: mending, the new frontiers






This album contains the newest 11 songs on my playlist to listen to while working at home.
You’re absolutely right!
'.$meta_box['title'].'
'; echo''; echo''; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }