-
Rizwan Reza
-
pie
-
Wynn Netherland
Hey there, I'm Wynn!
I'm a front-end designer & developer, CSS & JavaScript framework fanboy Razorback living in Texas.
Featured
-
Recently
Archives
Links
The Changelog – Open Source moves fast. Keep up.- cartagen - Client side framework for creating vector maps in HTML5
- NoRM - Bringing MongoDB to .NET, LINQ, and Mono
- Episode 0.1.6 - Ajax.org frameworks with Ruben Daniels and Rik Arends
- Git clone some nostalgia - NCSA Mosiac
- Ghost means never having to touch /etc/hosts again
- Prism - command line and Ruby library parser for Microformats
- Pull! Skeet - Twitter Extension for Google Chrome
- QR - Easy Redis queues with Python
- Faye - dirt simple pub/sub for Rack and Node.js
- FOWA 2010: David Recordon on Facebook Open Source Projects






A new Ruby gem for the Readernaut API
I was so happy to discover Readernaut this weekend. It’s got a lot of features and the interface seems much more intuitive than Shelfari or Good Reads. Since John Nunemaker’s HTTParty makes writing API wrappers in Ruby so much fun, I knocked out readernaut.
Installation
Usage
# get a list of books for a user books = Readernaut.books("pengwynn") books.reader_books.first.book_edition.title => "Crush It!" # get a list of notes for a user notes = Readernaut.notes("pengwynn") # get a list of contacts for a user contacts = Readernaut.contacts("pengwynn").contacts contacts.last.user.username => "blankenship" # paginate, ordering books = Readernaut.books("pengwynn", :page => 3, :order_by => "modified") # descending books = Readernaut.books("pengwynn", :page => 3, :order_by => "-modified")So, what are you reading? Why not friend me and recommend something.
Related posts: