Stream: wasm

Topic: blog post: SpiderMonkey optimizations on Wasm


view this post on Zulip Chris Fallin (Oct 11 2023 at 20:06):

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/

view this post on Zulip Olivier FAURE (Oct 13 2023 at 14:24):

Quick suggestion: have you considered adding an RSS feed to your blog?

view this post on Zulip Olivier FAURE (Oct 13 2023 at 14:25):

I didn't know about this blog post until I checked up on this zulip (which I don't do very often).

view this post on Zulip Olivier FAURE (Oct 13 2023 at 14:26):

RSS is a bit niche, but it's very good at its job ^^

view this post on Zulip Olivier FAURE (Oct 13 2023 at 14:26):

(though I guess I could also follow you on Mastodon)

view this post on Zulip Chris Fallin (Oct 13 2023 at 16:37):

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?)

:memo: A Jekyll plugin to generate an Atom (RSS-like) feed of your Jekyll posts - GitHub - jekyll/jekyll-feed: :memo: A Jekyll plugin to generate an Atom (RSS-like) feed of your Jekyll posts

view this post on Zulip Olivier FAURE (Oct 13 2023 at 22:32):

Yeah, that should work. For some reason inoreader didn't detect it.

view this post on Zulip Olivier FAURE (Oct 13 2023 at 22:33):

Having a "RSS feed" link somewhere in your layout would help as well

view this post on Zulip fitzgen (he/him) (Oct 13 2023 at 22:51):

theres a meta or link tag or something you put in the head to link the feed to the website

view this post on Zulip Victor Adossi (Oct 14 2023 at 05:56):

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.

I sometimes see web sites or blogs that have RSS feeds, but fail to include the one line of HTML that enables RSS autodiscovery. Even some well known blogs such as 37 Signals - Signal Vs Noise omit the feature. Jason Kottke's blog has autodiscovery support on the main page, but not on his entry pages.

view this post on Zulip Chris Fallin (Oct 14 2023 at 20:08):

Ah, I actually do have exactly that <link ...> in my <head> already

view this post on Zulip Chris Fallin (Oct 14 2023 at 20:08):

thanks for digging that up, useful for me to verify!


Last updated: Oct 23 2024 at 20:03 UTC