Man, this blog sucks!

Blogging is work.  And I already have a lot of it.  That’s why this blog is stale, stale, stale.  Is there a chance I can freshen it up?  I suppose.  I am looking for an independent place (i.e., not my work blog) to write about stuff… and FriendFeed isn’t enough.  I need to be able to publish code like so…

class Feeds::PeopleController < Feeds::BaseController
  before_filter :person_in_context, :only => [:show, :friends]

  # GET /feeds_peoples/1/friends
  # GET /feeds_peoples/1/friends.xml
  def friends
    @friends = @person.friends

    respond_to do |format|
      format.xml
    end
  end

  # GET /feeds_peoples/1
  # GET /feeds_peoples/1.xml
  def show
    respond_to do |format|
      format.xml
    end
  end
end

Anyway, I suppose I should start being productive with my blog again.