FeedBurner for the Paranoid

After all of the hubub this weekend about how FeedBurner is ‘trouble’ and ‘bad for us’, I wanted to make a quick note of a couple of ways to serve your feeds through FeedBurner in a way that makes it possible to easily and seamlessly bring your feeds back under your control at any time.

  1. Use FeedBurner’s MyBrand service (which is now free) to serve your feeds using a domain you own. This lets you serve your feeds with a URI of http://feeds.mysillyblog.com/mysillyfeed or the like. In the event Google ‘preferring’ Google Reader for feeds burned by FeedBurner (something I’m confident Google will never do), you’d just point feeds.mysillyblog.com back to a server you control, and in the blink of a TTL, your feeds are yours again. For details on implementing MyBrand, check out Danny Sullivan’s great guide: Stay Master of Your Feed Domain.
  2. Advertise your feed at a URL on your blog (http://mysillyblog.com/index.xml), then redirect users to FeedBurner with a 302 Found redirect. Straight from the HTTP specifications, this tells your browser or RSS reader:
    Since the redirection might be altered on occasion, the client SHOULD continue to use the Request-URI for future requests.
    Here’s a nice guide detailing how to properly redirect your feed to FeedBurner using a 302 Found response code. In this case, if Google / FeedBurner ever sins against you or your mother, your feeds can be instantly and seamlessly moved away from FeedBurner by removing this redirect.
  3. For the extra paranoid, combine methods 1 and 2!

I’m a huge fan of FeedBurner, and like Fred Wilson, don’t share the concerns of Dave Winer about FeedBurner’s future. At last count, I manage around 225 feeds in several FeedBurner accounts, and don’t ever plan on going back. But, if the need arises, I take comfort in knowing how easy is is to leave. To quote Fred’s post:

That gives me all the comfort in the world. I love it when services make it easy to leave. When they do that, I tend to stay.

How to Subscribe to TV Shows Using The Democracy Player, Bittorrent, and RSS

The Democracy Player is an amazing open source Internet TV application that allows you to subscribe to video RSS feeds from anywhere on the web. The default feeds will keep you supplied with endless viral and music videos from del.icio.us, Videobomb, and Telemusicvison, but with a little hackery, The Democracy Player will make you wonder why you’re still paying your cable bill.

For quite some time, I’ve been using TVRss to download episodes of The Daily Show that I’ve missed. TVRss scours a couple Bittorrent sites for TV shows, and provides RSS feeds of any search result. For example, here’s the RSS feed for recent episodes of The Daily Show. I currently subscribe to this feed in NetNewsWire and download the new shows as they appear.

These RSS feeds don’t work with The Democracy Player just yet: the feeds simply link to the bittorrent file, but don’t include the critical enclosure element. But with a little help from Feedburner ’s SmartCast service, feeds from TVRss can be plugged into The Democracy Player, effectively creating a Internet PVR.

Now that I’ve sufficiently bored you with the technical details, here’s the simple step-by-step:

How to Subscribe to TV Shows Using The Democracy Player & Bittorrent & RSS

  1. Download The Democracy Player
  2. Search for a show of your choice at TVRss
  3. Right click on the RSS/XML icon link and select Copy Link URL
  4. Go to Feedburner, and paste the URL into the text field on the home page, check the “I am a Podcaster!” box, and click next.
    1. If you don’t already have a Feedburner account, you’ll be prompted to create one
  5. Click “Next” to activate the feed
  6. Copy the URL of the feed provided by Feedburner (it should start with http://feeds.feedburner.com/)
  7. Open The Democracy Player, click “Add Channel”, and paste the URL of the feed into the field that appears
  8. Sleep. In the morning, you should have an episode of The Daily Show to watch!
  9. New episodes will automatically be downloaded as soon as they’re available on Bittorrent – I’ve found this to usually be a day after the show airs
  10. Enjoy!

In my mind, this is the future of video distribution. The technologies of Bittorrent and RSS perfectly compliment each other: Bittorrent downloads are much faster when concurrently downloaded by a large swarm. Notifying software programs of new Bittorrent files via RSS creates a swarm very quickly, resulting in faster downloads for everyone. The Democracy Player combines all of these technical elements with a pleasant UI, and great video management tools. The result is nothing short of spectacular.

Now if you’ll excuse me, I’m off to watch The Daily Show...

NetNewsWire OPML to Blogroll

Use NetNewsWire and want a list of your subscriptions on your blog? Here’s how I did it:

  • Export your subscriptions from NetNewsWire to a flat OPML file. This file contains links to all of your blogs in XML format, we’re going to use a XSL Transformation to turn this into an unordered list (<ul>).
  • Download TestXSLT, a free XSLT Transformation tool for OS X. Open the disk image and drag the TestXSTL icon to your Applications folder. Open it, and get ready for action.
  • Open MySubscriptions.opml from NetNewsWire in TextEditor, and select all of the text using apple+a, then copy it using apple+v.
  • Paste this into the XML tab of TestXSLT.
  • Paste the following XSL stylesheet into the XSL tab of TestXSLT.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes" standalone="no" omit-xml-declaration="yes" />
<xsl:template match="/">
    <ul>
<xsl:apply-templates select="//outline" >
    <xsl:sort select="@title" data-type="text" />
</xsl:apply-templates>
    </ul>
</xsl:template>
<xsl:template match="outline">
    <xsl:choose>
        <xsl:when test="@type='rss'">
            <li><a href="{@htmlUrl}"><xsl:value-of select="@title" /></a></li>
        </xsl:when>
    </xsl:choose>
</xsl:template>
</xsl:stylesheet>
  • Switch to the results tab and press Process. Voila! Your blogroll as an unordered list (<ul>), ready to copy and paste into your blog templates. Hope this works for you!