NEW: For a prettier blog interface, see the Wordpress version!
Headlines for Friday:
Tasks
| A | X | +write: pick a topic for reading course paper (writing) |
| A | X | Photocopy my DKG application |
| A | X | Hand over exam papers |
| B | X | Unsubscribe Janne : E-Mail from Janne Hellsten |
| B | X | Add weather to my blog |
| C | X | Add del.icio.us links to my notes |
Notes
1. The Year in Bookmarks
| Top 10 tags for 2005 | productivity(104) web2.0(88) digitalpinay(88) social(84) useful(83) business(80) blogs(70) research(69) lifehacks(68) blogging(60) |
Check out my year in bookmarks for more detail. =) If you want me to analyze yours, just save http://del.icio.us/api/posts/all to all.xml and run this Ruby script. You can also e-mail me (sacha@plannerlove.com) your all.xml if you don't want to go through the hassle yourself.
Much fun!
#!/usr/bin/ruby
require 'rexml/document'
require 'date'
include REXML
YEAR = 2005
USER = "sachac"
doc = Document::new(File::new('all.xml'))
month_hash = {}
month_total = {}
tag_total = {}
doc.elements[1].elements.each {
|x|
date = DateTime::parse(x.attributes['time'])
if (date.year == YEAR)
x.attributes['tag'].split(' ').each {
|tag|
month_hash[date.month] ||= {}
month_hash[date.month][tag] ||= 0
month_hash[date.month][tag] += 1
tag_total[tag] ||= 0
tag_total[tag] += 1
}
month_total[date.month] ||= 0
month_total[date.month] += 1
end
}
s = "Top 10 tags for " + YEAR.to_s + " |"
tag_total.sort_by { |tag,total| -total }.slice(0, 10).each { |tag,total|
s += ' <a href="http://del.icio.us/' + USER + '/' + tag + "\">" + tag + "</a>(" + total.to_s + ")"
}
puts s
month_hash.sort.each { |month,tags|
s = Date::MONTHNAMES[month] + "<br/>(" + month_total[month].to_s + " bookmarks) |"
tags.sort_by { |tag,total| -total }.each {
|tag,total|
s += ' <a href="http://del.icio.us/' + USER + '/' + tag + "\">" + tag + "</a>(" + total.to_s + ")"
}
puts s
}
On Technorati: ruby, code, del.icio.us
2. Characters blogged versus bookmarks

My blogging activity is similar to my bookmarking activity, so that means that bookmarking stuff with del.icio.us doesn't mean I don't blog as much. =)
3. Friday night
Ack! I guess I really am an extrovert now. I find it to be _dreadfully_ quiet for a Friday night. The kind of quiet that makes me wonder if everyone else is at fabulous parties that I just don't know about. Oh well.
The Year in Bookmarks
| Top 10 tags for 2005 | productivity(104) web2.0(88) digitalpinay(88) social(84) useful(83) business(80) blogs(70) research(69) lifehacks(68) blogging(60) |
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .