APIs
Transitioning from Google Reader to feedly
Transitioning from Google Reader to feedly
From the Feedly blog:
We have been working on a project called Normandy which is a feedly clone of the Google Reader API – running on Google App Engine. When Google Reader shuts down, feedly will seamlessly transition to the Normandy back end. So if you are a Google Reader user and using feedly, you are covered: the transition will be seamless.
Feedly is my top contender for a Reader replacement right now: multi-platform, ready to clone my Reader feeds, and prepared to essentially take over much of Reader’s core subscribe-and-sync functionality when Google pulls the plug.
Also, I can’t help but assume that they’re calling it Normandy because there are tens of thousands of Google Reader users suddenly storming their shores.
How to Export Your Last.fm Listening History on a Mac
My goal was simple: I wanted to export all of the tracks I’ve listened and stored in my Last.fm account. I don’t have any real experience working with APIs, but thanks to Jeroen Baert’s post, which I found via this StackExchange thread, I found a handy Python script that even a newb can run.
The script was originally written for use in moving your Last.fm data to Libre.fm, but it works just as well as a standalone backup.
I saved lastexport.py to my home folder (the one with your Mac username) and opened up a Terminal window. Then, I just pasted the following command into the Terminal prompt and pressed Enter:
python lastexport.py -u last.fm_user_name
Make sure you replace last.fm_user_name
with your own Last.fm user name. The script will store the results in a text file called exported_tracks.txt, located in your Home folder or whatever other folder you saved the script in. The data in the text file is a little messy, but it’s all there.
If you know how to make the data prettier, don’t hesitate to get in touch with me.