(no title)
arussellsaw | 5 years ago
* i absolutely built this for fun, it's an idea i had late at night and needed to scratch that itch
* the scolling sucks, laying out arbitrarily sized articles into a given layout is a challenge, and the scrolling hides a lot of the sins. I'm going to switch to truncating articles this evening, and linking to a single article page.
* thanks for the suggestions on hyphenation, i've been playing with a few different approaches but none have worked with all the browsers i tried, i'll give a few suggestions a go this evening!
k1m|5 years ago
I've experimented a little with trying to create more readable, printable layouts of web articles and feeds on https://www.fivefilters.org [1],[2] but yours has a much more traditional newspaper look which could look great in print.
[1] Simple Print for single articles https://pdf.fivefilters.org/simple-print/
[2] PDF from feed: https://www.youtube.com/watch?v=854Csokl3QA
exclipy|5 years ago
Have you seen pressreader.com's layout? eg. https://thewashingtonpost.pressreader.com/the-washington-pos...
They have some really nice ideas, implemented well. See for example how the articles click to expand. And the horizontal scrolling there works so well with the columns!
bovermyer|5 years ago
For example: https://w3bits.com/css-masonry/
_ja7e|5 years ago
baybal2|5 years ago
baybal2|5 years ago
alberth|5 years ago
https://archive.nytimes.com/www.nytimes.com/packages/html/fi...
You might want to look into it for design inspiration since the NYTimes solved for a lot of design problems I'm sure you've had to tackle/consider.
Great work btw.
richardboegli|5 years ago
[0] https://wwweeebbb.com/
chris_st|5 years ago
Do RSS feeds have "just" text that you pull to get the article content, or are you parsing the webpage somehow? If so, how?
I've done something slightly (well, about 1% :-) similar for the "Popular" page on pinboard[0]. It used to have a line or two from the start of the article, using a webpage content extractor that got turned off, so I can't use it anymore.
One arguably nice thing about mine is that it's updated once a day, and it remembers what you've read yesterday, so new articles are marked, and you can flip a switch to see the new stuff first.
Thanks!
[0] https://pbpb.cls.cloud
arussellsaw|5 years ago
This is also running in a semi-serverless container in Google Cloud Run (only costs me £1 a month!) so fetching and re-caching all of that when a new container is scheduled is painful, however it seems like state in the container is persisted longer than i initially thought, so it's good enough for now.
rodolphoarruda|5 years ago
hinkley|5 years ago
Ah, much better now.
Paper newspapers do this in spades, so this behavior shouldn’t surprise most people.
I hate to say his, but you might have to turn on justification to make it look more paper-like. In doing so you can get rid of many of the vertical separator lines (but you might need to be more conservative with max columns)
bryanrasmussen|5 years ago
It seemed like everything was flex? maybe I'm wrong, and I missed it somewhere?
MarkusQ|5 years ago
Now if you could just get an AI to rewrite the content to bring it up to the old (roughly pre-"USA Today") journalistic standards, it would be perfect!
But that's probably too much to ask.
runawaybottle|5 years ago
https://www.reddit.com/r/reddit.com/comments/c13uq/i_just_fo...
vagab0nd|5 years ago
Do you use any framework for the frontend? If so, could you open source it?
arussellsaw|5 years ago
The CSS framework i use is https://bulma.io and the server side rendering is all done with Go’s html/template library.
I’m definitely going to open source it but I’m too ashamed of the code right now, this evening is going to be cleaning and ‘production using’ the code
ghego1|5 years ago
Also, I think that the scrolling feature is one of the most innovative things I've seen in many years on how to format articles on the web. It makes a lot of sense to be honest IMH.
jaydouken|5 years ago
chrismatheson|5 years ago