Do the data dumps have breadcrumbs other than posts and comments?
#! /usr/bin/perl
use warnings;
use strict;
use Time::Local;
Count daily activity in $seen{$date}:
my %seen;
Count comments and posts or edits:
sub comments {
my($id) = @_;
open my $fh, "<", "comments.xml" or die "$0: open: $!";
while (<$fh>) {
next unless /UserId="$id"/;
die "$0: $.: no CreationDate"
unless /CreationDate="(\d{4}-\d{2}-\d{2})T.*?"/;
++$seen{$1};
}
}
sub posts {
my($id) = @_;
open my $fh, "<", "posts.xml" or die "$0: open: $!";
while (<$fh>) {
if (/OwnerUserId="$id"/) {
die "$0: $.: no CreationDate"
unless /CreationDate="(\d{4}-\d{2}-\d{2})T.*?"/;
++$seen{$1};
}
elsif (/LastEditorUserId="$id"/) {
die "$0: $.: no LastEditDate"
unless /LastEditDate="(\d{4}-\d{2}-\d{2})T.*?"/;
++$seen{$1};
}
}
}
Finally the tally:
sub as_time_t {
my($date) = @_;
die "$0: bad date '$date'"
unless /^(\d\d\d\d)-(\d\d)-(\d\d)$/;
timegm 0, 0, 0, $3, $2-1, $1-1900;
}
die "Usage: $0 id-num\n" unless @ARGV == 1;
my $id = qr/\Q$ARGV[0]/;
comments $id;
posts $id;
my($start,$end) = map as_time_t($_), (sort keys %seen)[0,-1];
for (my $t = $start; $t < $end; $t += 86_400) {
my($mday,$mon,$year) = (gmtime $t)[3,4,5];
$seen{ sprintf "%04d-%02d-%02d" => $year+1900, $mon+1, $mday } += 0;
}
my $streak = 0;
foreach my $date (sort keys %seen) {
if ($seen{$date}) {
++$streak;
printf "%4d - $date - $seen{$date}\n", $streak;
}
else {
$streak = 0;
}
}
Example usage:
$ cd "Stack Overflow Data Dump - Feb 10/Content/022010 SO" $ streak 22656 [...] 149 - 2010-01-27 - 38 150 - 2010-01-28 - 17 151 - 2010-01-29 - 25 152 - 2010-01-30 - 17 153 - 2010-01-31 - 7
.../Stack Overflow Data Dump - Feb 10/Content/022010 SO. – Greg Bacon Feb 12 '10 at 15:18