@hamishcampbell @ricmac @evanprodromou @julian Thanks for your kind words. I won't interrupt your discussion with Julian anymore. I hope you reach some accord!

evan@cosocial.ca
Posts
-
Mainstream adoption of ActivityPub vs. DIY indie hacking -
Mainstream adoption of ActivityPub vs. DIY indie hacking@hamishcampbell @ricmac @evanprodromou If I remember correctly, you shared a blog post with your ideas for what you want to do on the matter? I hope it works out. Good luck!
-
Recommend object URL should 301 to AP resource@trwnh @julian @johnonolan @angus there's a doc for this.
-
Recommend object URL should 301 to AP resource@julian @johnonolan @angus there's a whole task force for this. You've commented on it. Why does this need to be discussed?
-
Long-formers Activate!@johnonolan @julian @matt @pfefferle more than meets the eye
-
Long-formers Activate! -
Social Web After Hours at FOSDEM 2025@julian Yes, Christine and Jessica are going to do a lightning talk at the devroom on Saturday. I am confirming a replacement speaker.
-
Social Web After Hours at FOSDEM 2025@naturzukunft I mean, first, the article is not about Social Web Foundation, but about the event at FOSDEM. Second, if you want to know about posts *from* the Social Web Foundation, you can identify that by the actor or the domain.
-
Social Web After Hours at FOSDEM 2025 -
Signalling "open in app" behaviour for AP content@julian @silverpill no recos for consumers yet, but: I'd start with content negotiation, then Link headers. From there, fallback to <link> elements in HTML. Last recourse, try Webfinger, especially for non-HTML resources like images.
-
Signalling "open in app" behaviour for AP content@julian @silverpill the HTML discovery tf doc is filling in. There's still a lot to do but maybe that's a good place to ask questions.
-
Pre-Alpha ActivityPub-related bug reports@trwnh @silverpill @erincandescent @julian Except for most interfaces, your first page is the current stuff, and you go back in time to find earlier stuff.
-
Pre-Alpha ActivityPub-related bug reports@trwnh @silverpill @erincandescent @julian
If you have bidirectional links (`first` and `last`) you can have stable collections with rev-chron or forward-chron. So, fair point.
-
Pre-Alpha ActivityPub-related bug reports@trwnh @silverpill @erincandescent @julian oh, yes, that's true, if you do "volatile paging" (last 20 pages).
If you have reified pages (item goes in one page and stays there), once the pages are full, they don't change (except for `Remove` activities).
Don't do volatile paging.
If you use reified pages, an add to a reverse-chron collection will typically have changes to `first` and the Collection itself.
-
Pre-Alpha ActivityPub-related bug reports@erincandescent @julian @evan@community.nodebb.org @trwnh @silverpill Standards are about making arbitrary decisions in the pursuit of uniformity.
-
Pre-Alpha ActivityPub-related bug reports@trwnh @silverpill @erincandescent @julian
It's bad for caching to do forward chron, which is why we don't do it anywhere else.
Also, it does not help you build a tree structure; older nodes are not necessarily at the top of the tree.
-
Pre-Alpha ActivityPub-related bug reports -
Pre-Alpha ActivityPub-related bug reports@silverpill @trwnh @erincandescent @julian Also, I think you're imagining some kind of pre-order traversal sorting. If you want that, it's a lot easier to just walk the `replies` tree.
-
Pre-Alpha ActivityPub-related bug reports@silverpill @trwnh @erincandescent @julian Use the `last` property to start with the oldest page.
-
Pre-Alpha ActivityPub-related bug reports@trwnh @julian @erincandescent @silverpill you can also get the whole thing! That's the big benefit of having a `Collection` -- you can retrieve it.