Query posts to get all but the most recent post

I had to use the WP_Query class:

$the_query = new WP_Query(array( 'category_name' => 'Recipe of the Week', 'offset' => 1 )

And then reference my new query object in the template like this:

<?php while ( $the_query-> have_posts() ) : $the_query->the_post(); ?>

tech