DEV Community

Zack
Zack

Posted on

Now what do I read? A web app for blazing fast book recommendations.

(x-post from nowwhatdoiread.com)

Cat on books

What book are you reading right now? Do you enjoy it?

If you answer “yes” to either of those questions then stop reading this blog and go read your book!

If you answer “no” to either of those questions then its time. Its time to get a new book to read.

“But,” you profess, “there is nothing to read.” I believe you. I believe because you’ve asked your friends, you’ve searched Amazon.com, you’ve checked Goodreads.com, you’ve browsed the library shelves, the Barnes & Noble shelves, and no single book has caught your attention. And, now, you’ve rightfully concluded that there is nothing to read.

Don’t give up the search, yet. There is a book out there just for you - a book that is so good that you won’t put it down even when it’s 11:30 pm and you have to wake up at 5 am for work.

How do I know there is a book out there for you? I know because I’ve been in the same situation. I’ve searched, and gotten tired of searching and gave up. But then I found a better way to search. This better search led me to a book out there, written just for me. This way to find books has worked not just once or twice but every time. Now, I’m able to find an amazing book anytime I have the question: “now, what do I read?”

A new way to search for books

How do I find my next books to read? I do this the same way everyone does in 2019: using a web app.

A web app is just a fancy name for a computer program that is accessible on the internet. A web app’s computer program can hold information about millions of books inside its circuit brain. It can use its gigahertz processor to find the most relevant book suggestions and use the internet to display them on a website. Unlike your friends and friendly librarian, a web app can take any request, at any time, and give you an unbiased book suggestion in milliseconds.

I made such a web app with my computer. And, since my computer is not owned by Amazon / Barne’s and Noble / Powells or other online booksellers, it won’t try to manipulate you because it wants you to buy something.1

Note: My web app does use Amazon Affiliate links which sends me money for link clicks. This money pays for hosting ($12/year) after which I direct all profits from to supporting the actual Amazon via the Amazon Conservation Association.

My web app is further optimized to only show the best books with similar traits and exclude books that are sequels or multiple books from the same author.2

The web app written in Golang. The key to its speed is utilizing the Badger keystore and precomputing all the similarities for a million books. Fuzzy searching is provided using the amazingly fast junegunn/fzf library. Images are inlined with base64 to make all the assets bundled and its minified with tdewolff/minify to get that extra boost in speed. Also, there is no Javascript so the server does the heavy lifting making the rendering appear instant.

The web app is called nowwhatdoiread.com. Go ahead, try it.

An example of using nowwhatdoiread.com

Here’s an example from my life. For some reason, I read Boy’s Life by Robert McCammon. I thought it was a biography but it turned out to have magic and horror. I don’t normally read horror but I loved this book. I thought that there wouldn’t be many books like this.

I used nowwhatdoiread.com and entered “Boy’s Life” and found Weaveworld by Clive Barker. This book blew me away and I liked it more than Boy’s Life. But, after finishing Weaveworld I was again dismayed. It was so good and unique I thought I wouldn’t find anything close to it again. But then, I asked the web app for books similar to Weaveworld and found The Library at Mount Char by Scott Hawkins. This book was even better!

I still find great and relevant book suggestions using nowwhatdoiread.com. The last book I put in The Library at Mount Char and now I’m currently reading Kraken by China Miéville, which I’m enjoying.

This example led me down a particular set of genres, but I’ve found the genre doesn’t matter and I’ve gotten good recommendations for all other sorts of books. I’ve found book suggestions for all genres, as there as the web app doesn’t have any bias towards a particular genre.

The cycle continues

Every book I read now gives me more books to read with the help of this web app, nowwhatdoiread.com. Though I made it mostly for myself, I’m opening it up to the world so that you can find a book and support a charity at the same time.

Maybe it will work for you. Maybe it won’t.

In any case, I hope that instead of asking “now, what do I read?” you can just say “now, I read.”

Oldest comments (1)

Collapse
 
shindakun profile image
Steve Layton

Sounds interesting would love to hear more on the code behind the app.