I don't like the way .Text .95 shows only the top 20 posts by category, then provides a “View complete archive“ link to display all. If you don't like it either it is easily changed by making a single change in the onload() method of Dottext.Web.UI.Controls StoryList.cs. The “View complete...“ link passes a “Show=0“ QueryString value so we turn it off.
//int count = Request.QueryString["Show"] != null ? 0 :10;
int count = 0;
There, that saves me a click!