personalizing googles personalizable

Reading time: about 4 minutes

Using google's personalized home for an internet based todo list

Last night I had an idea. I was checking out the news on my google personalized home and adding new news feeds to my page and saw the "Create a Section" option at the bottom. Then I had an amazing idea: I could easily create an XML based todo list and have it on my google personalized home page.

You might be thinking "Why would you want todo anything so silly as to keep an XML based online todo list?" The short answer is "Why not?". The better answer is that I am learning about XML in one of my classes and thought RSS might be a good thing to add on to my tech skill set. The long answer is .... well you don't want to hear that.

What you'll need:

Creating the RSS

In the creation of RSS feeds there are a few requirements. RSS feeds, like all XML, follow a standard format that allows for aggregators and other RSS enabled programs to easily display the information contained in the RSS feeds. The standard format for an RSS feed is as follows:

<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
<channel>
  <title>...</title>
  <link>...</link>
  <description>...</description>
  <language>...</language>
  <item>
    <title>...</title>
    <link>...</link>
    <description>...</description>
  </item>
  <item>
    ....
  </item>
</channel>
</rss>

Fill in the ... and you have the bare minimum RSS feed. There are many optional RSS tags that allow for specifying copyright, author, contact email addresses and a myriad of other informational options. For the purposes of this todo list I am setting all of the <link> tags to point to my website. These tags are mandantory by the RSS spec but are un-needed for this purpose. Filling the blanks with some a basic todo list we get:

<?xml version="1.0" encoding="ISO-8859-1"?>
  <rss version="2.0">
  <channel>
    <title>todo list :</title>
    <link>http://robertcarpenter.net</link>
    <description>Robert Carpenters Online, RSS Enabled todo List</description>
    <language>en-us</language>
    <item>
      <title>Go to Walmart</title>
      <link>http://robertcarpenter.net</link>
      <description>Buy ramen noodles, canned soup, pasta, pasta sauce</description>
    </item>
    <item>
      <title>Make packing list for trip to denver</title>
      <link>http://robertcarpenter.net</link>
      <description></description>
    </item>
  </channel>
</rss>


Getting google to display the RSS

First off you will want to make sure that your XML is well formed. Open up your RSS file in firefox and if it displays you have well formed XML.

Next upload your RSS file to your webserver by your favorite method. To make sure that you have the correct RSS implementation you need to validate your RSS. Feedvalidator.org is a free web based RSS and ATOM validator and will do just fine. If you have errors in your RSS file click the help link next to feedvalidator's error message for information on how to correct it.

The last step is to log in to google's personalized services and add the feed. Click on the add content button in the top left of your personalized home.

At the bottom of the list is the "create a section" option. Enter the url for your RSS todo list and google will query your server for the XML and display it on your personalized home page and there you have it. A personalized online todo list that you can access from anywhere that has internet access.

Things to keep in mind

Questions

What is the point? Why not just make a web page to do it for me? After all, I am using a webserver in the first place.

You might have noticed that all the technology to create an online todo list, plus some rss, is required to create an online rss todo list. So, what is the point of going through all the effort of creating an RSS todo list?

To learn how to use RSS for a somewhat practical benefit. To learn how to do it so that when somebody asks “Hey, how do they make those RSS thingys?” You can show them.

To show off your uber geek skills.




Date: 2006-Jan-19
Tags: rss google
Previous: Google Fixes Microsoft Loophole
Next: ti83 prime numbers

In December 2017 this post was imported from an archive of my pre-2009 blog stored by archive.org.
Consider a donation to archive.org if you find this content valuable.