Atom Atom feed

Blogging Year In Review: 2005

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.

Here's the top 15 postings this year.

Thank you for reading this blog. I wish you a Happy New Year!

See you next year.

Tags :