Sometimes life is just so very simple.
I was loooking over that link and came accross this tiny bit of code that will allow you to display a single category on your front page. So easy… so sweet =)
<?php
if (is_home()) {
query_posts(“cat=1”);
}
?>