How I Make My Week of Links

The first few times I was formatting my ‘Week of Links’ post I had a very loose and chaotic system in place. Most of my reading is done through my Google Reader account, which helps centralize all the different websites and blog feeds into one place. This way, instead of having to load 10+ websites every day to catch up on news, I am able to go to my Google Reader and read all my news in one neat location.

When I first started saving links to use for these posts I would shift between tagging them, starring them, or sending them to my Instapaper account. This quickly became chaos and resulted in more confusion and work than I had ever intended.

Slowly, as the weeks progressed, I fell into a rhythm. During the week I would Star each Google Reader item that I thought was interesting or worthwhile to share. After the week was over I would go through my starred items from the past week, sometimes skipping articles that were no longer relevant or interesting, and open each article in a new tab (in the background thanks to this Google Chrome Extension). At this point I have one Google Chrome windows open with about 15-20 tabs, each with the article loaded.

From here I open the most excellent Chrome Extension Session Buddy and use its export feature of my open tabs to produce a CSV file with the title and URL of each article.

Until this week I would manually go through this list and create the HTML necessary to make each headline linkable, which was quite an arduous and boring job. This week however I made a breakthrough and was able to automate this task through the use of only FOUR lines of Python code. Opening a Terminal window on my Mac I entered into the Python Interpretator and ran the following four lines:

import csv
reader = csv.reader(open("googlRss.csv", "rb"))
for row in reader:
	print '<a href="%s" target="_blank">%s</a>' % (row[1], row[0])

Which produced the following result:

After this point it was only a matter of adding my comments to each headline, and voila! The Week of Links was ready for publishing!

Week of Links 014 & 015

This is a double-featured Week of Links because I’m so late getting it online. This covers this past week, and the week before that one.

As you can tell these posts are becoming harder to keep on top of, and as such I am going to have to put my ‘Week of Links’ on hiatus for a little bit. Life has gotten way too busy and I simply don’t have the right amount of time to dedicate to these posts. Also I want to start focusing on longer term projects. That means that they’ll be less regular updates from me, but hopefully with more things to share when I do update.

For now please enjoy this latest Week of Links.

Continue reading

Week of Links 013


I know it’s late. Life’s getting busy. You should be able to enjoy what I’ve found for you here. Let me know what you like best.

Also I’m sure you’ve noticed the new ‘Week of Links’ graphic. Courtesy of Rachel. Thanks Rachel. :)
Continue reading