Category: librarian stuff

RSS Readers: Google Reader vs. Bloglines

I’ve had a bloglines.com account for some time now. Honestly, I haven’t used it that much, but I do think it is useful from time to time. For those who don’t know, among other things, bloglines.com allows you to aggregate posts from any site with an RSS feed, and read/link to the posted items from bloglines.com, rather than having to check lots of sites every day.  In other words, if you read lots of news sites, blogs, etc., you check one spot instead of dozens.

At the Computers In Libraries conference last week, Steven Cohen sung the praises of the Google Reader — Google’s RSS reader. Since I’ve seen him speak at several conferences and he’s never given me bad advice, I checked out Google Reader.

As usual, Steven is right. Google Reader is cool. But first, let me tell you what is STILL good about bloglines.com :

  • When you set up an account with bloglines, you are not only automatically set up to subscribe to RSS feeds, but you are also immediately able to start your own blog. Is it pretty? No. It is a simple blog, with from what I can tell no options for different themes, layouts, etc. But it is a blog, and is right there.
  • I still think bloglines has a nice page layout. It isn’t fancy, but it is functional. The majority of the page is the window in which posts are displayed — nice and wide. Looks good. Displays images from the posts.
  • When you are reading a post on bloglines, you can click a link to see who else subscribes to that feed. Nice feature for finding other interested in the same stuff. Not sure if Google Reader does this — I’ll check.

 So, what is so great about Google Reader?

  • Well, if you have gmail account you an just go right into Google Reader with no sign up.
  • You can import your subscription list from another reader. Don’t have to re-enter all your info.
  • Since it is part of the Google system, you have easy access to all the other Google tools.
  • Most important: Google Reader allows you to click a link and share items to a public page that it creates for you. For example, here’s my public page. As you will notice, there is an RSS stream for your public page, which allows other people to subscribe to it. Yes, you can create an RSS stream of what you are reading. Sort of cool.
  • There’s also a “friends” function in Google Reader. Haven’t played with it much.

As you can see, Google has included a lot of social networking tools within Reader. I think this is what bloglines was missing.  They both allow you to aggregate information for your own use, but Google Reader has added the ability to share that info with the group.

Anyway, pretty cool.

Do I want the extra functionality? Probably. Do I want to sign over more of my online activities to Google? Maybe not. Will I continue to ask questions like this and then answer them? Most definately.

Discuss…

UPDATE: I added a link to my shared matrial from Google Reader over in the sidebar, under bibliosk8 stuff.

“Hip” librarians…

So here is a New York Time article about the new, young, edgy and hip librarians of the 21st century.

I think they are a little late noticing this, but I guess it is good. Thing is, you can’t judge a book by its cover. I have worked with some older librarians who were incredibly smart, talented, versatile, and cool. Like my former boss – older than 60 — who speaks multiple languages with great fluency, has 3 Masters Degrees, and can write actual computer code in circles around me. Or my boss now, who is a great painter. You know, you really don’t need to have a nose ring or tribal tattoos on your face, eh? Case in point: yours truly goes to work everyday in his plain clothes — but look what I can do:

dsc00005.JPG dsc00002.JPG
So eat your hearts out, hipsters. Bwahahahaha!

But all my 42 year-old old skater bitching aside, rock-on, hip edgy librarians. The image did, indeed, need updating. That fact is attested to by the use of the “shushers” in the title of this NYT article. Every generation likes to take what it is doing and put its own “stamp” on it. I don’t know many old skateboarders that don’t love to laugh about the lack of “style” in newschool skateboarding, but you know, there’s still style there. Just a different style.

Combining free blog hosting with your own domain name.

Hosting a site on a free service like WordPress.com has some advantages. For one thing, they really keep the blogging software up to date, with constant improvements, new widgets, etc. You never have to lift a finger to upgrade. The problem is that you are limited as to disk space, bandwidth, etc. This is why this blog is not run on WordPress.com – I wanted to go beyond the services that WordPress provides for free. I have a rented server account with Dreamhost.com, on which I can host as many domain names as I need, with tons of bandwidth and storage.

I recently started a new skateboarding blog called “concretelunch.net“. I plan on using a lot of photos and videos on the site, which will require both disk space and bandwidth. I purchased the domain name, but I’d rather host the blog — which will be the “homepage” — for free on WordPress.com. At the same time, I want to use my Concretelunch.net domain name (so I can just refer to “concretelunch.net”, rather than “wordpress.concretelunch.com”) and also use that domain to host and serve large files, run other applications, etc.

Here is a nice way to make it all work. I set up the blog on WordPress.com. Then on my server, under the domain concretelunch.net, I deleted the existing index.html file, replacing it with index.php . The index.php file contains only the following code — a simple redirect to my WordPress.com blog:

<?php
header( ‘Location: http://www.yoursite.com’ ) ;
?>

The nice thing about using a redirect like this is that I can use WordPress.com’s free service for low bandwidth stuff, but if I want to point to something like a gallery URL, like “concretelunch.net/gallery” (which doesn’t exist yet), I can do that easily. Of course, this only works because the server I host my domain name on runs the PHP scripting language. However, you could easily find a PERL or JavaScript redirect script to use instead.