Hi all -- I just posted a blog post about optimizations (a new interpreter tier) I've made to SpiderMonkey when running within a Wasm module, which folks here might find interesting: https://cfallin.org/blog/2023/10/11/spidermonkey-pbl/
Quick suggestion: have you considered adding an RSS feed to your blog?
I didn't know about this blog post until I checked up on this zulip (which I don't do very often).
RSS is a bit niche, but it's very good at its job ^^
(though I guess I could also follow you on Mastodon)
my mostly-still-the-default-template Jekyll configuration apparently generates an Atom feed at https://cfallin.org/feed.xml, if that works?
(I am only a mere compiler engineer, not too well-versed in the ways of the web, but apparently at least according to this doc section + discussion on jekyll-feed
, Atom supersedes RSS?)
Yeah, that should work. For some reason inoreader didn't detect it.
Having a "RSS feed" link somewhere in your layout would help as well
theres a meta or link tag or something you put in the head to link the feed to the website
A little bit of searching and according to this site it's something like:
<link rel="alternate" type="application/atom+xml" title="RSS Feed for petefreitag.com" href="/feed.xml" />
How the feed reader finds the file is probably different per reader but seems like the above should work.
Ah, I actually do have exactly that <link ...>
in my <head>
already
thanks for digging that up, useful for me to verify!
Last updated: Nov 22 2024 at 16:03 UTC