Slashdot Mirror


Slashdot Asks: How Will You Replace Google Reader?

Despite a hue and cry from disappointed users, Google has not made any moves to reverse its decision to close down Google Reader on the first of July, just a few weeks away. Despite the name — and the functions it started out with in 2001 — Reader has become more than a simple interface to RSS feeds; Wikipedia gives a concise explanation of how it evolved from just a few features to a full-blown platform of its own, incorporating social-sharing features of the kind that have become expected in many online apps. Those features have morphed over the years along with Google's larger social strategies, along the way upsetting some readers who'd grown used to certain features. If you're a Google Reader user, will you be replacing it with another aggregator?

23 of 335 comments (clear)

  1. Seems legit by Anonymous Coward · · Score: 5, Informative

    www.commafeed.com

  2. With NSA Reader! by Anonymous Coward · · Score: 5, Funny

    The NSA already reads all the feeds I subscribe to so I don't have to!

  3. I've been trying feedly by Chrisq · · Score: 5, Informative

    Feedly is OK, but not as good as reader. In particular I miss being able to use it to combine multiple feeds into a bundle - which then has its own RSS feed that can be displayed on web pages. Also an embeddable view for igHome would be good

    1. Re:I've been trying feedly by onosson · · Score: 5, Informative

      I've been using Feedly since about 1-2 days after the announcement of Reader's cancellation, and although it took a while to get used to it I've found it to be a pretty solid replacement. The iOS app works well for me, and I appreciate that there are a few alternative views available for scrolling through your feed. I hope that it continues to work well once the Reader "tap" is shut off for good - Feedly has said the transition will be "seamless", I have my fingers crossed.

      --
      ? syntax error
    2. Re:I've been trying feedly by Geeky · · Score: 5, Interesting

      The thing that put me off feedly was the requirement for a browser extension. Why on earth would you need a browser extension for what ought to be a simple website?

      --
      Sigs are so 1990s. No way would I be seen dead with one.
    3. Re:I've been trying feedly by Taeolas · · Score: 5, Informative

      I switched to Feedly as well a few days after the announcement, and I've had no real issues with it. It works for my needs, both on the desktop and on the phone.

      I've also noticed that since I'm not using GReader any more, I've stopped using G+ as well. Feedly's G+ link sharing seems a bit buggy, so I don't share there, and I don't feel the need or desire to check in on G+ any more one way or another. (Granted I barely share on Facebook either).

      My only real beef is email sharing feels a bit cludgy compared to Reader, but even with Reader it wasn't as nice as it used to be.

    4. Re:I've been trying feedly by slim · · Score: 5, Insightful

      Why on earth would you need a website for what ought to be a simple RSS reader?

      It feels neater architecturally. If 1000 people use a desktop RSS reader set to poll every 5 minutes, the feed gets 1000 hits every 5 minutes. If they all use a service like Reader (and it's sensibly written) then the feed gets one hit every 5 minutes.

      It has the convenience of giving you all your items, with your unread flags up-to-date, wherever you're reading (home, work, mobile, ...).

      It empowers the provider to generate good "people who liked this also liked..." recommendations -- whether you find that useful, scary or both.

    5. Re:I've been trying feedly by Anubis+IV · · Score: 5, Informative

      I used Feedly for about a month after the Google Reader announcement, but the inability to export your feeds (as .opml or otherwise) was a deal-breaker for me. Their prescribed manner for exporting is to log into your Google account and grab it from there, which won't be an option for much longer, and last I had checked, they had not promised that they'd add the ability, despite increasingly vocal requests from the community.

      So, rather than getting permanently locked into using Feedly, I went searching and ended up at The Old Reader, which seems to do a decent job. It doesn't have as much attention to detail, but it's clean, responsive, works well, and most importantly allows me to export my feeds. I wish it supported the ability to set per-folder and per-feed viewing options, rather than changing those options globally, and it'd be nice if it grabbed updates a bit more frequently, since I've noticed it can lag behind Google Reader by a few hours, but overall it's a better replacement for me than Feedly.

      The runner-up for me as Comma Feed, which also seems to be decent, but it had some quirks that made it annoying to use (e.g. if you wanted to mark more than one article as unread, you had to click the keep unread buttons for them from bottom-to-top, since interacting with an article down lower on the list would mark everything higher on the list as read). It was also noticeably slower to load articles when you clicked on a folder.

    6. Re:I've been trying feedly by LordThyGod · · Score: 5, Funny

      Why on earth would you need a website for what ought to be a simple RSS reader?

      Its an NSA requirement.

    7. Re:I've been trying feedly by Myopic · · Score: 4, Interesting

      Agreed. I switched to Feedly a few hours after Google told me they didn't want me to get news from them anymore. I think it's pretty good. The thing I miss from GR is using 'n' and 'p' to read the next and previous news stories. Feedly's documentation swears that it supports keyboard shortcuts, but it doesn't work for me on any of my machines. The layout is usually pretty nice. I'd like more features, but the basic implementation is a satisfactory replacement for Reader.

  4. If Life Wasn't So Busy, My Own by eldavojohn · · Score: 5, Informative

    How Will You Replace Google Reader?

    (Disclaimer: I'm going to use the term 'bandwidth' universally instead of the more correct 'latency' or 'throughput' so normal people can hopefully understand this post) The biggest problem I have with every alternative I have tried is that they are built with the most annoying design flaws. They are so painful to me that I am certain these flaws will be look back upon as the geocities of our modern day web development.

    When I fire up an alternative, the responsiveness that was in Google Reader just isn't there. And it always seems like the alternatives require you to hit "refresh" on their interface and then what happens? It apparently makes a call out to every single RSS feed to get updates. On the surface this may seem like standard HTTP way of thinking about things. But it makes for a shit user experience. I have thousands of RSS feeds. Thousands. And if I hit refresh in this paradigm, my browser makes 1,000+ HTTP GET requests. It's not a lot of data but if even one of those requests is slow, it's usually blocking on ceding control back to me.

    So let's iterate improvements on here that will get us back to Google Reader style responsiveness, shall we? Well, one of the simplest improvements I can see is to do these requests asynchronously with nonblocking web workers. You can attach each of them to the div or construct that each feed is displayed in and only have them work when that feed is visible (for instance if I am collapsing/expanding folders of feeds). You can grey out the feed until the request comes back but if another request returns first, it is parsed and inserted and activated to my vision. That way if cnn.com comes back faster than NASA's Photograph of the Day, I can read while waiting for my images.

    But the core problem is that I'm on my home computer on a residential cable modem and, let's face it, Cox sucks. So what I think Google was doing was sacrificing their bandwidth to actually "reverse" the request from client to server. And, in doing so, they could package up all your updates and ship them out in one request (probably compressed). So, this is how I would approach that. Instead of doing a heart beat HTTP GET to check for RSS updates, I'd build a WebSocket and instead of requesting information, the client (browser) would be listening for information. The event/listener paradigm here would save both the user and the RSS host a lot of bandwidth but it would cost the host of the feed reader service some of that bandwidth (although much less). So basically the client JavaScript would load the page just like normal but instead of continually sending HTTP GET requests, a WebSocket would merely inform the server which feeds are active and listen for updates coming in from the server.

    On the downside, this greatly complicates the server side. You need to have one be-all end-all "cache" or storage of all incoming feeds that any user is subscribed to. And for each of these feeds, you need to have a list of the users subscribed to it. And now your server will need to maintain the HTTP GET requests to cnn.com and NASA in order to get updates. When it gets an update, there's two ways you could handle it (user queues are complicated so I won't suggest that) but the most basic way is to send it right out to everyone on that subscription list who has an active WebSocket session established with their account. If a new WebSocket session is established, they simply get the last N stories from their subscriptions (Google included pagination backwards binned by time). To alleviate even more bandwidth from you, you could store it on the client side with HTML5 Web Storage and then the first thing the Web Socket does is find the last date on the last stored element and send that across to t

    --
    My work here is dung.
  5. Why do I need an aggregator? by MichaelJ · · Score: 4, Insightful

    An application on my desktop, or "app" on a tablet or smartphone, is all the aggregation I need in order to read the RSS feeds to which I'm subscribed. The only functionality that Google Reader ever provided that I needed was syncing unread/read information across those applications. Of course, under the covers the applications were letting Google do all the heavy lifting, even the RSS feed checking. Going forward, though, all I need is an RSS reader application that's multiplatform with read/unread syncing.

    --

    Michael J.
    Root, God, what is difference?
  6. Self-hosted TinyTinyRSS by Anonymous Coward · · Score: 5, Interesting

    I'll go for a self-hosted tinytinyRSS: http://tt-rss.org/

    Never cared much for all the social features, I like keeping up with websites and being absolutely sure I haven't missed anything.

    I'm not sure why I sign into google anymore. No need for reader. Youtube favs I suppose.

  7. Happy with NewsBlur by alvin67 · · Score: 4, Informative

    I have been very happy with NewsBlur as my Reader replacement. I am now 100% switched over. I use it to read nearly 1500 feeds and performance is great. They have clients for iOS and Android and FeedMe is a decent third party Windows Phone client. For the amount of time I spend each week in feeds, I am happy to pay $20 per year for a premium NewsBlur account.

  8. inoreader.com by chargen · · Score: 5, Informative

    I've been trying inoreader and have found it to be easy to use and fairly feature-rich.

    Some highlights
    - Easy import of all your Google reader feeds
    - Lacking an android app, but one is planned and there is a mobile version of the site
    - Fast
    - Free

  9. Google's loss by Anonymous Coward · · Score: 5, Insightful

    Really bummed that Google Reader is closing. But if Google is no longer interested in my news reading habits then it's their loss. And I'll no longer be logged-in to Google all day. So it's really their loss. But a huge gain for my privacy.

    At work using Windows RSS Owl is looking like my best choice. Akregator for Linux. Not yet sure what I'll use on Mac.

  10. Re:TheOldReader is promising by wile_e8 · · Score: 4, Informative

    I think The Old Reader is the best replacement for Google Reader because it seems to be the only RSS reader I've found that is actually trying to do what Google Reader did. The others I've tried (specifically Feedly and Netvibes) seem to have different goals but can be adapted to behave similarly (but not the same) to Google Reader. I actually went with Netvibes for about the first month after the GR announcement because TOR was pretty lacking in the feature department and extremely slow due to the crush of new users. However, TOR had been rapidly updating the feature set, and I switched back over after they fixed up the mobile site and expanded their keyboard shortcuts among other tinngs (they've been great at adding features requested on the user feedback site).

    When picking out a replacement to GR, I thought the most important thing was having the same goals as GR did in order provide the same functionality, and TOR has that in spades. I've never figured out why Feedly gets so much love in the GR replacement posts on tech sites. Need to install a browser extension? Yuck. The app wants to look like a magazine? Yuck. If you want to a pretty app to read articles like a magazine on your tablet, Feedly is nice, but it's not a replacement for Google Reader. The Old Reader is, especially now that the mobile site works as well as the Google Reader app ever did.

  11. Re:Sod google reader by Anonymous Coward · · Score: 4, Interesting

    Check out http://www.ighome.com

    It doesn't look quite as nice as iGoogle, but it's close enough.

  12. TinytinyRSS! by Twiggeh · · Score: 5, Informative

    I switched to TinytinyRSS, and since its hosted on my friends server (will probably set up my own once my ESXi host gets more RAM) i dont have to worry about it suddenly dying on my. Migration was easy too since i could just export my list and import it in TTRSS.

  13. Netvibes and here's why by stevegee58 · · Score: 4, Informative

    When I received the first warning about Reader going away I started looking for alternatives. For me, having it be web-based was most important since I wanted to used it at home and work. The "at work" thing is a problem since I can't just install anything I want on my work PC.
    It seems like the RSS reader market is flooded with apps so it was difficult to find web-based services. I had grown used to the Reader look and feel so I settled on NetVibes as being the closest fit.
    My main criticism is NetVibes is not as fast as Reader but otherwise the format and whatnot is perfectly usable.

  14. Re:Sod google reader by DrXym · · Score: 5, Informative

    Exactly. iGoogle is a really useful homepage. Google have nothing to replace it (Google+ is not a replacement). So I'll just jump over to Yahoo. I'll probably do a large chunk of my searches through Yahoo too.

  15. Re:Sod google reader by Anonymous Coward · · Score: 4, Insightful

    I went from MyYahoo to iGoogle years ago. It's sad to think I might return. Getting you to use a their web site as a home page used to be the gold mine all companies strive for. I don't understand why Google would give this up. Especially without presenting a Google alternative well before the expiration.

  16. Re:I don't need to by interkin3tic · · Score: 4, Insightful

    Simply stunning.

    Google: "Here, let me do this free awesome thing for you. I'll be taking notes of course, but you know that."
    Gweihir: "How LONG are you going to do it for me?!?"
    Google: "Uh, probably a few years at least. And you can use someone else's service if you want when we stop, we'll make it really easy to do so. Like, one button push."
    Gweihir: "So, not forever?"
    Google: "Well, no, but it's not like we're charging you for..."
    Gweihir: "EVIL!!! OMG, YOU'RE JUST LOOKING FOR A PROFIT!!! FUCK YOU!!!"

    Yeah, you definitely dodged a bullet there.