Blog

Using Evernote Like Instapaper

[NOTE: This post is now woefully outdated. I've added an up-to-date method for achieving this at this post.]

I’ll come right out and say it, I’m an Evernote junkie. My brain lives in Evernote: To-dos, bookmarks, records, receipts, notes, parking space reminders, beers I like; everything. It’s really great, and runs on every computer I use, my phone, and the web. I can get to it anywhere.

I also spend a large amount of time finding things to read on the Internet, but don’t necessarily have the time to read them when I find them. And even more often, when I want to read them, I have only my iPhone, and intermittent connectivity (commuter train, subway, etc.). For a little while I was using Instapaper to save articles for offline reading, but I had to think ahead and sync the Instapaper app before going off the grid. And frankly, another bookmarking service wasn’t something I was really into at all.

Now, Instapaper does this crazy thing where it magically finds the content of an article and formats it so that sane people can read it, but that wasn’t really enough to get me to keep using it. However, I also knew of another service called Readability which essentially does the same thing, minus the read-it-later aspect. And also, I knew that Evernote comes with a web clipper that shoots the content of a web page into your cloud-brain with a single click in the bookmark bar.

How great would it be if I could reformat articles and send that stripped-down version, with only the relevent content, into Evernote to read later? I’m always syncing Evernote on my phone, and I’ve always got it open when I’m on a computer, so everything should stay in sync really well.

Well, turns out that’s possible. Thanks to some helpful articles (which I of course copied into Evernote), I made a little bookmarklet which Readability-izes the current web page, then clips it to Evernote. Just copy the code below into a new bookmark’s URL field and put it in your shortcut bar. Click it on a page you want to read later, and it’ll pull the article contents, then launch the Evernote clipper (you need to install that first), and clip it.

[codesyntax lang="javascript" lines="no"]

javascript:function%20enClip(){EN_CLIP_HOST=%27http://www.evernote.com%27;try{var%20x=document.createElement(%27SCRIPT%27);x.type=%27text/javascript%27;x.src=EN_CLIP_HOST+%27/public/bookmarkClipper.js?%27+(new%20Date().getTime()/100000);document.getElementsByTagName(%27head%27)[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+%27/clip.action?url=%27+encodeURIComponent(location.href)+%27&title=%27+encodeURIComponent(document.title);}}(function(){readConvertLinksToFootnotes=false;readStyle='style-ebook';readSize='size-small';readMargin='margin-wide';_readability_script=document.createElement('script');_readability_script.type='text/javascript';_readability_script.src='http://lab.arc90.com/experiments/readability/js/readability.js?x='+(Math.random());document.documentElement.appendChild(_readability_script);_readability_css=document.createElement('link');_readability_css.rel='stylesheet';_readability_css.href='http://lab.arc90.com/experiments/readability/css/readability.css';_readability_css.type='text/css';_readability_css.media='all';document.documentElement.appendChild(_readability_css);_readability_print_css=document.createElement('link');_readability_print_css.rel='stylesheet';_readability_print_css.href='http://lab.arc90.com/experiments/readability/css/readability-print.css';_readability_print_css.media='print';_readability_print_css.type='text/css';document.getElementsByTagName('head')[0].appendChild(_readability_print_css);})();function%20timedCount()%20{if(document.readyState%20==%20%27complete%27){t=setTimeout(%22enClip()%22,600);}}timedCount();

[/codesyntax]

Some caveats though: be sure to turn off the Evernote clipper’s formatting, or you’ll actually wind up with a carbon-copy of the Readability page, with no wrapping text, and some colors and fonts that won’t look so good on, say, a phone. But once you sort that out, you’ve got yourself an Instapaper alternative that integrates with everything else in Evernote.

8 Responses to “Using Evernote Like Instapaper”

  1. Maxx says:

    Interesting use of Evernote. I am personally surprised by the following that Evernote has. I found its organizational tools lacking. How do you manage so many different types of content in Evernote? Just tagging? It got too complicated and messy for me =[

    I’m using Notational Velocity on the Mac to sync with SimpleNote on the iPhone for the quick jotting down of notes, and using Things for To-Dos. (Also using SpringPad (yet again another tool) to keep track of stuff I want to buy or check out later.) I admire the unity of your workflow.

  2. John says:

    I actually like Evernote for the reasons it sounds like you don’t. I have minimal notebooks: [To File], Bookmarks, Creative, Work, Personal, Records, and School. After that, it’s just tags (some of them nested in others). Using combinations of notebooks and tags, I use saved searches to get to frequently-used areas quickly. And of course search is really handy, and fast.

    I don’t need really robust task management like Things, just casual lists and items that I need to accomplish. I use Evernote for these too, but with the help of Egretlist, an iPhone app built on top of Evernote. It looks for notes with checkboxes in them, and aggregates them using the same notebooks, tags, and notes. Works well for me, since I can see the lists everywhere I am.

  3. [...] surprisingly, my last entry about Evernote and Instapaper/Readability has been getting a consistently large amount of traffic. [...]

  4. DyNama says:

    it works! i love Evernote too. before Evernote i didn’t have 1 place to put everything i wanted to keep. i don’t even bother with many tags, searching my 850 evernote notes is good enough for me. i had a Readabilty strip to Evernote button, so after a reformat of my hard disk, i found yours on a google search. thanx!

  5. Zia says:

    Great stuff John, thanks.

    How can I amend the code to enter a specific tag and/or load to a specific notebook in Evernote?

    • John says:

      Hm, good question. I’m no javascript whiz; I really just combined two snippets I found at the links in the article above. So, I don’t really know what the Evernote clipper can take in as variables from javascript. I would venture to guess, though, that the “getElementsByTagName” section is the place to look. Please share if you find any better info!

  6. rosana345 says:

    Is it clicktoapp an option? http://clicktoapp.com

  7. [...] most popular post on this blog, by far, has been what I wrote about using Evernote like Instapaper. Well, time has passed, and that post is completely outdated, yet it continues to get hits. [...]

Leave a Reply