Live data from Hacker News

Poll: Do you use Google Reader on a daily basis?

news.ycombinator.com

251–254 of 254 posts

Re: Poll: Do you use Google Reader on a daily basis?

#251
I use the mobile version on my laptop because it's so much easier to use (http://www.google.com/reader/i/). I also wrote a quick Javascript hack that makes the font bigger because for some reason the cries of the visually impaired fall on deaf ears at Google and Flipboard:

javascript:(function(){ var newsize = '24px'; var divs = document.getElementsByTagName('div'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; var divs = document.getElementsByTagName('a'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; var divs = document.getElementsByClassName('item-snippet'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; var divs = document.getElementsByClassName('text'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; var divs = document.getElementsByClassName('item-title-collapsed'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; var divs = document.getElementsByClassName('entry-contents-inner'); for(i=0;i<divs.length;i++) divs[i].style.fontSize=newsize; })()

Re: Poll: Do you use Google Reader on a daily basis?

#252
post #76

I used to use Google Reader, but I found that I missed seeing the original site and that I couldn't easily filter out stories I didn't want to read. So I built NewsBlur -- http://www.newsblur.com . It's open-source and I'd love if more folks followed my development: http://github.com/samuelclay . It's been a weekend project but it's been a wild ride so far. One of my main goals is to have much of the functionality of…

this is super AWESOME. Keep up the great work Sam.
Post reply on HN