This post originated from an RSS feed registered with Java Buzz
by Weiqi Gao.
Original Post: Blogging Year In Review: 2005
Feed Title: Weiqi Gao's Weblog
Feed URL: http://www.weiqigao.com/blog/rss.xml
Feed Description: Sharing My Experience...
Another year draws to a close. Rather than going through the year's events month by month like I did last year, I thought I'll just do some work with the log files and come up with the years top blogs.
I used this awk script extract URLs from log files:
{
if (match($0, /.*\[(.*)\] *"GET ([^ ]*2005[^ ]*)" .*/, a) > 0) {
print a[2];
}
}
And I used a simple Java program to do the counting and sorting.