This is the end (of this blog)
Tuesday, January 29, 2013 1:26:47 PM
Hi! This blog reached the end of the line.
As my colleague Robert did when he changed project, I'm going to take this opportunity of blog migration to also post some statistics of my work on My Opera, that in theory finished 2 years ago, but in practice I have been involved occasionally with it for up to last summer, while working on many other projects. So here it goes, stats on the My Opera repository, just for fun:
Number of commits by me$ git log --author=cosimo --format='%h' | wc -l 3438Number of commits by me, excluding merge commits
$ git log --author=cosimo --format='%h' --no-merges | wc -l 3415The first commit I ever did
$ git log --author=cosimo --format='%h %ad %s' --date=short | tail -n1 3dadd39 2007-11-20 Passed source through perltidyThe last commit done by me (this far)
$ git log --author=cosimo --format='%h %ad %s' --date=short | head -n1 78182d0 2012-11-13 Let ip/useragent details flow through to AuthThe amount of lines changed by me; added lines versus removed lines
$ for c in `git log --author=cosimo --format='%h' --no-merges`; do git diff-tree $c --numstat --no-commit-id | sed -r -e 's/-/0/g' | awk '{print $1 " " $2}'; done | awk '{add+=$1; del+=$2} END {print "+" add " ; -" del}' "$@"
+1070536 ; -832019
For the other major project I worked on, that included designing and implementing our Single Sign On system, I have logged 2189 commits for 3 and a half years, between 28/4/2009 to 21/12/2012 totalling 401806 lines added and 343350 lines removed :-)
More than everything, I learned so much during these years... Amazing.
I migrated the existing content to a personal domain. If you want to continue reading my useless posts, or want to read some old useless posts, then by all means, redirect your browser:

Nicolas Mendozanicomen # Friday, February 1, 2013 7:50:30 PM
Cosimo Strepponecstrep # Friday, February 1, 2013 8:47:57 PM
Sent by mail.
Nicolas Mendozanicomen # Friday, February 1, 2013 9:09:15 PM