Remix.run Logo
superkuh 2 days ago

I don't know about you, but I don't know of any native (non website/javascript) software that supports h-feeds. IndiePass was only ever for smartphones and it's fully dead. h-feed is more of a html integrated mark-up for posts than any form of actual separate feed file. This is claimed to be a positive aspect of h-feeds, not being a separate file... but it really isn't. I keep track of all the other indieweb sites I care about via normal rss/atom feeds. h-feeds were an aspiration that did not actually come about. The rest of the indieweb protocols rock though.

I looked around andros.dev and found no (real) feeds so I'll probably just forget the site in a week. If it had had a feed I'd have added it to my desktop native readers.

andros 2 days ago | parent | next [-]

Well, don't shoot the messenger. I'm just letting you know what they recommend :D

By the way, andros.dev has an RSS feed.

account42 14 hours ago | parent [-]

> Well, don't shoot the messenger. I'm just letting you know what they recommend :D

The great thing about hosting your own website is that you can decide for yourself what "standards" and "recommendations" actually make sense for you.

> By the way, andros.dev has an RSS feed.

You should add <link rel="alternate"> links to the RSS/Atom feed. The way people (or at least I) discover RSS feeds is to paste the blog/article URL into my feed reader - if that can't find the feed then I more than likely just give up and move on. All I can find on your site is a button in the side bar that doesn't even work.

andros 12 hours ago | parent [-]

Thanks for the advice, but I intentionally removed `<link rel="alternate">`. I think if you take some time to explore the feed modal, you'll understand why I did it.

account42 12 hours ago | parent [-]

No I don't think I will.

andros 12 hours ago | parent [-]

Have a nice day

BoingBoomTschak a day ago | parent | prev [-]

It's at https://andros.dev/blog/feed/en/

Had to look at the page source to find it, since without JS, the bottom left button does nothing.

andros 12 hours ago | parent | next [-]

By the way, what you're saying isn't true. That link isn't present in either the HTML or the JS, the URL is sent via WebSockets. You had to open the modal to see it.

andros a day ago | parent | prev [-]

Modals use JS, that's normal.

account42 14 hours ago | parent | next [-]

It doesn't need to be a modal and can (should!) fall back to a simple <a> without JS. It also didn't work even with JS for me.

andros 13 hours ago | parent [-]

First, you're assuming my entire website should work without JavaScript. You don't understand my design reasoning, nor have you asked about the underlying cause.

Second, for a modal, I should use a `<dialog>` that opens via a `<button>`, which it already does. JavaScript does the magic. Not a `<a>` as you suggested.

Finally, if it's a bug, which I find very strange because it's a very simple piece of code and no one has reported it, you're not posting it in the right place. An email or the contact form would have been more appropriate.

superkuh 13 hours ago | parent | prev [-]

I tried manually typing a handful of common feed URLs relative and absolute, a firefox feed auto-finder extension, and a quick ctrl-f for feed in the source. But I guess if running an application is required for your webpages I'm better off not subscribing. That's not my kind of jam but it is understandable if your blog is for profit or it's purpose is to get you a job or something.

andros 12 hours ago | parent [-]

That's why I created a modal that explains the different RSS feeds for subscribing and their possibilities. My blog is over a decade old, and I've never used advertising, had sponsored articles, or tried to monetize it (except for asking for donations to maintain the server). I've written freely, sharing knowledge, creating tutorials, and developing courses. Your comment makes me lose the motivation to keep doing it.

trekz 10 hours ago | parent | next [-]

I think he just means that you should add an autodiscovery link tag pointing to your RSS feed URL. Then it will automatically be picked up by RSS readers. See https://www.rssboard.org/rss-autodiscovery.

As unnecessarily snarky as this person is being with you, don't let a HackerNews comment stop you from being an great person.

andros 10 hours ago | parent [-]

Thank you!

superkuh 8 hours ago | parent | prev [-]

I didn't mean to imply that your blog seemed commercial. I meant that there was no need for commercial patterns on your personal blog like putting links behind JS. Things like that have justification in commerce but rarely in personal stuff so I wanted to leave that conditional just in case your blog was for commerce so as not to offend.

If that's just the way you like things, sure, that's what personal sites are for. How you like it. I apologize for implying otherwise (it must come off that way since two different people took it that way). I just really dislike the web as 'executable application distribution layer' model and try to stick to websites that are HTML pages.

andros 8 hours ago | parent [-]

I accept your apology; it must have been a misunderstanding.

I believe that in my case, the use of JavaScript is justified because it's information that doesn't require a separate page; there are just a couple of configuration buttons. On the other hand, the page is rendered using HTML over WebSockets, and what you're experiencing is the vanilla SEO version... hut of course, that's just my opinion.