I don't know about anyone else but even if this is posted only for my resource later, that's fine. I'm sure Google will pick this up. I'm always forgetting which to use... ASC or DESC for my sort options and I usually end up using 6 different ways.. so I wrote them all down for safe keeping so I could use over and over and never forget. Here it is:
Newest to Oldest
$sort = array('date', 'DESC');
Oldest to Newest
$sort = array('date', 'ASC');
Most Views to Least Views
$sort = array('views', 'DESC');
Least Views to Most Views
$sort = array('views', 'ASC');
Most Comments to Least Comments
$sort = array('comments', 'DESC');
Least Comments to Most Comments
$sort = array('comments', 'ASC');
If anyone thinks that this is a waste of a post, my feelings wont be hurt if you delete it.

