Live data from Hacker News

I turned my Kindle into my own personal newspaper

manualdousuario.net

61–68 of 68 posts

Re: I turned my Kindle into my own personal newspaper

#61
post #48

Quite ironically, readeck is not able to parse this article EDIT: used the firefox extension to save it, pasting the link directly into readeck works :)

Any idea why the extension failed? I go to great lengths to make my blog a good web citizen (semantical, working without JS etc.), and that it isn't parseable would be a thing I need to fix.

Re: I turned my Kindle into my own personal newspaper

#62
post #61
post #48

Quite ironically, readeck is not able to parse this article EDIT: used the firefox extension to save it, pasting the link directly into readeck works :)

Any idea why the extension failed? I go to great lengths to make my blog a good web citizen (semantical, working without JS etc.), and that it isn't parseable would be a thing I need to fix.

Sorry I really have no idea :(

But I just tried again and now it saved it correctly.

On my first try it only showed a line of two of the main content, truncated by an ellipsis.

Re: I turned my Kindle into my own personal newspaper

#63

I faced the same issue, but I wanted to use my Kindle to read RSS feeds without relying on my PC, phone or Amazon, so I built a FOSS web-based RSS reader compatible with the Kindle browser. It may make your life a lot simpler. Link: https://inkfeed.xyz Repo: https://github.com/adhamsalama/inkfeed-reader

Hello Adham! Great solution, but I'm having an issue using my Paperwhite 7 Generation in the Kindle web browser. When I try to click on any of the already saved feed, a pop up appears showing the following: loadFeed error: 'undefined' is not an object. Maybe you have already encountered an issue like this. Thanks in advance!

Re: I turned my Kindle into my own personal newspaper

#64

I faced the same issue, but I wanted to use my Kindle to read RSS feeds without relying on my PC, phone or Amazon, so I built a FOSS web-based RSS reader compatible with the Kindle browser. It may make your life a lot simpler. Link: https://inkfeed.xyz Repo: https://github.com/adhamsalama/inkfeed-reader

Hello Adham! Great solution, but I'm having an issue using my Paperwhite 7 Generation in the Kindle web browser. When I try to click on any of the already saved feed, a pop up appears showing the following: loadFeed error: 'undefined' is not an object. Maybe you have already encountered an issue like this. Thanks in advance!

Sorry for the delay. Will check it out.

Re: I turned my Kindle into my own personal newspaper

#65
post #26

I faced the same issue, but I wanted to use my Kindle to read RSS feeds without relying on my PC, phone or Amazon, so I built a FOSS web-based RSS reader compatible with the Kindle browser. It may make your life a lot simpler. Link: https://inkfeed.xyz Repo: https://github.com/adhamsalama/inkfeed-reader

Interesting project! I’d love to self-host but can’t find the backend server code - could you share a link to its repo?

I haven't open sourced the Backend yet, but the reader frontend repo is fully working without the Backend. The Backend is used for emailing yourself and doing file conversion on the Backend instead of the Kindle to save battery.

So without the Backend you're only missing the email feature. All you need is a proxy to bypass CORS.

To be honest I was thinking of keeping the Backend closed source to add subscriptions ($1 per month) to cover the hosting (4$), which means I only need 4 users to break even haha.

Will think about open sourcing the Backend and get back to you.

Re: I turned my Kindle into my own personal newspaper

#66

I faced the same issue, but I wanted to use my Kindle to read RSS feeds without relying on my PC, phone or Amazon, so I built a FOSS web-based RSS reader compatible with the Kindle browser. It may make your life a lot simpler. Link: https://inkfeed.xyz Repo: https://github.com/adhamsalama/inkfeed-reader

Hello Adham! Great solution, but I'm having an issue using my Paperwhite 7 Generation in the Kindle web browser. When I try to click on any of the already saved feed, a pop up appears showing the following: loadFeed error: 'undefined' is not an object. Maybe you have already encountered an issue like this. Thanks in advance!

It's hard for me to debug this because I don't have a Paperwhite 7. I assume it's a JS compatibility issue but not where the exact root cause.

Since the reader is Open Source, can you run it on your machine and view it on your local network to debug and tell me what's the issue so that I can fix it?

Re: I turned my Kindle into my own personal newspaper

#67

Earlier quoted context omitted.

Hello Adham! Great solution, but I'm having an issue using my Paperwhite 7 Generation in the Kindle web browser. When I try to click on any of the already saved feed, a pop up appears showing the following: loadFeed error: 'undefined' is not an object. Maybe you have already encountered an issue like this. Thanks in advance!

It's hard for me to debug this because I don't have a Paperwhite 7. I assume it's a JS compatibility issue but not where the exact root cause. Since the reader is Open Source, can you run it on your machine and view it on your local network to debug and tell me what's the issue so that I can fix it?

On Kindle 7’s outdated WebKit, both feed loading and article opening failed because the code relied on Set and DOM properties(too modern) that were missing, causing “undefined is not an object/function” errors. I could fix it by adding defensive null/type checks across DOM and helper functions, and implementing a full Set polyfill (has, add, delete, clear, forEach) to ensure compatibility without changing the existing logic. Now that I'm checking, the Hacker News articles don't correctly load. Only shows the URL.

Re: I turned my Kindle into my own personal newspaper

#68

Earlier quoted context omitted.

It's hard for me to debug this because I don't have a Paperwhite 7. I assume it's a JS compatibility issue but not where the exact root cause. Since the reader is Open Source, can you run it on your machine and view it on your local network to debug and tell me what's the issue so that I can fix it?

On Kindle 7’s outdated WebKit, both feed loading and article opening failed because the code relied on Set and DOM properties(too modern) that were missing, causing “undefined is not an object/function” errors. I could fix it by adding defensive null/type checks across DOM and helper functions, and implementing a full Set polyfill (has, add, delete, clear, forEach) to ensure compatibility without changing the existin…

It would be great if you opened an issue on GitHub (or a PR) so we can fix this. I definitely want this to work on all Kindles including older models. Thank you.
Post reply on HN