Live data from Hacker News

Show HN: RSS.Beauty – Make Your RSS Beautiful

rss.beauty

11–20 of 24 posts

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#11

I've been using XSLT on RSS feeds forever now. It's a pretty awesome way to make it browser-accessible now that no browsers want to natively handle feeds. If you want to self-host an XSL for a feed it can be tricky serving the feed with the right Content-Type because some browsers want to throw feeds over to an external app even though they can display it themselves. My favorite part is styling makes XML serve its or…

Totally breaks some RSS readers that render the page before processing.

An RSS reader should not be paying any attention to a stylesheet. That is not part of the RSS or ATOM schema and is irrelevant to the "feed" portion of the document. If you come across a feed reader applying a stylesheet you should report it as a bug.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#12

The use of Tailwind feels rather bloated to me. Seems a big part of why it is 22KB for RSS.xsl. Not that you necessarily need to code golf an XSLT file to be as small as possible, but it just contributes to my disregard for Tailwind itself as a source of bloat as another example from the wild where Tailwind seems verbose and baroque.

Yes. Let me figure out a way to optimize Tailwind and remove unnecessary CSS.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#14
post #6
post #5

Tried to use on mobile firefox, but seems to be doing something very CPU intensive, doesn't respond for ~10s then the tab crashes

Even kills the app for me. Unresponsive afterwards, even after leaving the page.

We sincerely apologize for the inconvenience caused.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#15

I've been using XSLT on RSS feeds forever now. It's a pretty awesome way to make it browser-accessible now that no browsers want to natively handle feeds. If you want to self-host an XSL for a feed it can be tricky serving the feed with the right Content-Type because some browsers want to throw feeds over to an external app even though they can display it themselves. My favorite part is styling makes XML serve its or…

However, the compatibility differences among various browsers are significant, and the adaptation difficulty is also very high.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#16
post #14
post #6

Earlier quoted context omitted.

Even kills the app for me. Unresponsive afterwards, even after leaving the page.

We sincerely apologize for the inconvenience caused.

:) That's not necessary, but it would be interesting to know what trips Firefox up like that.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#18
post #15

I've been using XSLT on RSS feeds forever now. It's a pretty awesome way to make it browser-accessible now that no browsers want to natively handle feeds. If you want to self-host an XSL for a feed it can be tricky serving the feed with the right Content-Type because some browsers want to throw feeds over to an external app even though they can display it themselves. My favorite part is styling makes XML serve its or…

However, the compatibility differences among various browsers are significant, and the adaptation difficulty is also very high.

WebKit and Gecko based browsers, so basically every device with a screen, supports XSLT 1.0 just fine. Even the old IE Trident engine had good support for XSLT. For styling an RSS feed XSLT 1.0 will do everything you need and that spec has been out for close to 26 years. I don't know what compatibility problems you're expecting.

Typically browser engines that don't support an XML specification version will do the proscribed thing and ignore it. So some old Series 60 WAP browser (were you to find such a thing today) would ignore the XSL stylesheet and display the raw XML or hand it to the registered handler for the content type.

The world went bonkers supporting XML on every computing platform under the Sun for nearly a decade.

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#19
post #16
post #14

Earlier quoted context omitted.

We sincerely apologize for the inconvenience caused.

:) That's not necessary, but it would be interesting to know what trips Firefox up like that.

Hi, I am part of the Mozilla community. Mozilla devs read through comments and saw an issue with Firefox. They filed https://bugzilla.mozilla.org/show_bug.cgi?id=1939643 to identify why it doesnt work only in Firefox. Turns out other browsers do not follow the spec, and the underlying libraries that the page uses used workarounds to make it work in Chrome, but that broke Firefox. We filed https://github.com/tsparticles/tsparticles/issues/5443 (to fix the workaround in the library), https://issues.chromium.org/issues/387030982 (Chrome bug to get it fixed there) and https://bugzilla.mozilla.org/show_bug.cgi?id=1939701 (which creates a common webtest for all the browser vendors so that this functionality is tested in future and doesnt break).

All of this during the Holiday Season too!

Re: Show HN: RSS.Beauty – Make Your RSS Beautiful

#20
post #16

Earlier quoted context omitted.

:) That's not necessary, but it would be interesting to know what trips Firefox up like that.

Hi, I am part of the Mozilla community. Mozilla devs read through comments and saw an issue with Firefox. They filed https://bugzilla.mozilla.org/show_bug.cgi?id=1939643 to identify why it doesnt work only in Firefox. Turns out other browsers do not follow the spec, and the underlying libraries that the page uses used workarounds to make it work in Chrome, but that broke Firefox. We filed https://github.com/tsparticl…

Indeed, very nice!
Post reply on HN