I like being up-to-date on topics that interest me. The main tool I use to do that is RSS feeds. I use Feedly to subscribe to RSS feeds of information sources that I want to follow (mostly blogs).
While Feedly is available via web and mobile apps, I use the Android app almost exclusively. I might use the web version to organize my subscriptions from time to time, but I do the actual reading on my Nexus 5.
I made it a habit to catch up on my Feedly Must Read list as a filler, whenever I have “down time” (commute, waiting for something, coffee break, etc.). Much better than burning time on Facebook and such, in my opinion 🙂 . I religiously clear out my Must Read queue at least once a week (I estimate it’s currently around 1,200 items per week).
This post lists my favorite RSS feeds, as of December 2014.
A word on my Feedly workflow
The Must Read feature on Feedly is priceless for me. I add two kinds of feeds to the Must Read list:
- Feeds that I decided to follow on a regular basis, with the goal to at least skim through everything published on them.
- New feeds that I’m “trying out” (don’t have a predetermined trial period though).
I will add new feeds that seem interesting to the Must Read list, to experience the content on a regular basis. Whenever I feel overwhelmed by the load on the Must Read list, I go through the feeds and trim it down.
A feed with especially bad content will be removed completely. Feeds that lose their Must Read status due to overload will remain in other Feedly categories that I might get to (but usually not).
Parameters I consider when choosing feeds to keep or to demote (in this order):
- Value.
- Energy required to follow.
“Energy” includes feed traffic (articles per day), and time it takes me to go through an average article on that feed. There are feeds with light traffic but long in-depth articles (like “Building Real Software”), and other feeds with heavy traffic but usually I just read the title (looking at you, Re/Code).
Must Read feeds that I follow regularly
In no particular order:
- NSUserView (website, feed)
- Bridging the Nerd Gap (website, feed)
- Asana Engineering Blog (website, feed)
- GeekDad (website, feed)
- Securosis Highlights (website, feed), and Research Library (website, feed)
- Lifehacker (website, feed), and sub-blogs Two Cents (website, feed) and Lifehacker After Hours (website, feed)
- A couple of Google blogs:
- The Official Google Blog (website, feed)
- Google Research Blog (website, feed)
- Google Developers Blog (website, feed)
- Google Online Security Blog (website, feed)
- Google for Education (website, feed)
- Google Cloud Platform Blog (website, feed)
- Google Testing Blog (website, feed)
- Official Android Blog (website, feed)
- Gmail Blog (website, feed)
- Google Open Source Blog (website, feed)
- Android Developers Blog (website, feed)
- Airbnb Engineering (website, feed)
- Schneier on Security (website, feed)
- BrettTerpstra.com (website, feed)
- Thought Asylum (website, feed)
- 99U (website, feed)
- Re/code (website, feed) (very high-traffic but low-entropy)
- Building Real Software (website, feed)
- Buffer blogs Open (website, feed), and Social (website, feed)
feed) - The Ostrich (website, feed)
- Jamie Todd Rubin (website, feed)
- Simon Weber (website, feed)
Must Read feeds in trial period
- Barefoot In the Head (website, feed) (the inactive blog of Sugata Mitra (known for the Hole in the Wall experiment and School in the Cloud TED talk and project), now more active on Twitter)
- Evernote as Portfolio (website, feed)
- Brandie Kajino – Writer & Thinker (website, feed)
- Hasolidit.com (Hebrew only) (website, feed) (lots of personal finances philosophies I don’t agree with. I think it’s good to also be exposed to things I don’t agree with though 🙂 )
- A Life of Productivity (website, feed)
- From Information to Intelligence (website, feed)
- The Blog of Author Tim Ferriss (website, feed)
- capeably (website, feed)
- Barking Up The Wrong Tree (website, feed)
- Technology as a way of life (website, feed)
- David Allen Company Podcast (website, feed) (looks abandoned though)
- Chris Webb (website, feed or website, feed)
- The Meteor Blog (website, feed) (not very informative though)
- Mike Long’s Blog (website, feed)
Some other feeds from my archives
I don’t see a reason to list all of the feeds I have in the archives, as I don’t really follow them actively.
Here are a few of those feeds that I didn’t really want to demote, but the load was too much:
- Android Police
- GigaOM
- TechCrunch
- Wired Science
- Wired Top Stories
A few more that I used to follow when my day job was around information security:
- Krebs On Security
- Dark Reading
- LinuxSecurity.com
- ZDNet Zero Day Blog
- Threat Level
- CNET News – Security
- ZDI Recent Press & ZDI Published Advisories
- Symantec Weblog
- Sucuri Blog
- Threatpost
- troyhunt.com
- Moxie Marlinspike’s Blog (Thought Crime)
Appendix: How I used Python to build the list above
Feedly supports exporting the feeds in the OPML format.
I thought it would be faster to parse the export file and generate a Markdown list for this post, compared to manual labor. So I did 🙂 .
This script produced a list that I “massaged” a bit:
#!/usr/bin/python2.7 from xml.etree import ElementTree as ET tree = ET.parse('feedly.opml') # downloaded Feedly export file here must_read = tree.getroot().find('.//outline[@text="Must Read"]') for feed in must_read: html_url = feed.attrib.get('htmlUrl') or 'MISSING HTML URL' print '- %s ([website](%s), [feed](%s))' % (feed.attrib['text'], html_url, feed.attrib['xmlUrl'])
Summary
That’s my list. What’s on yours?
Leave a Reply