feedi
feedi copied to clipboard
A personal news aggregator and Mastodon client
First thank you for this nice idea and implementation ! Sometimes, when reading the posts, UI starts scrolling and jumping back and scrolling again. I guess it may be linked...
1. There's a CSS fallback for when the image is missing, but it doesn't seem to work ~in mobile~ in safari. 2. I tried multiple combinations of the favicon fetching...
I currently rely on [stkclient](https://github.com/maxdjohnson/stkclient) to send articles to kindle devices. This is sketchy because it mimics a desktop app to get a private key and brittle because the key...
Sometimes when I fetch a new page from the feed, I get one or two duplicated entries. This could be some bug in the assumptions of the pagination algorithm (perhaps...
If the article includes a webp image, it should be converted to another format or removed from the output HTML. The conversion probably requiers PIL or similar and some OS...
The feed submit form in particular has non-exhaustive, ad hoc [validation code](https://github.com/facundoolano/feedi/blob/10386815b5aa82867187da9749aca413ff519751/feedi/routes.py#L304-L323), and [its template](https://github.com/facundoolano/feedi/blob/HEAD/feedi/templates/feed_edit.html) some conditional logic that could perhaps be simplified or at least make more readable by...
The current CSS takes vanilla bulma and customizes it by overridding styles, in some cases by hardcoding and duplicating variables that could be reconfigured if we were building bulma from...
I currently have a couple of template filters to truncate the entry content ([full/text view](https://github.com/facundoolano/feedi/blob/10386815b5aa82867187da9749aca413ff519751/feedi/filters.py#L55-L59) and [compact/pinned view](https://github.com/facundoolano/feedi/blob/10386815b5aa82867187da9749aca413ff519751/feedi/filters.py#L89-L94)) in Python. This is because I couldn't get the HTML and CSS...