julian
@julian@community.nodebb.org
Co-Founder (NodeBB) | Husband 🤷♂️ and Dad 🙉 to three | Rock Climber 🧗♂️ | Foodie 🥙 | Conductor 🎵 | Saxophonist 🎷
✅ Small teams craft better code.
🇨🇦 Made in Canada
🗨️ Federating NodeBB with funding from NLNet ♥️🇪🇺
- Comment on NodeBB v4.14.0 — Federation regression fixes, security fixes, and more! 2 days ago:
Thanks, I've found a bug where retries were not sending in the (saved) digest, and updated
activitypub.spaceCan you let me know if you are still seeing them? Since they only occurred on retries, it was likely not something that happened often.
- Submitted 2 days ago to nodebb-development@community.nodebb.org | 0 comments
- Comment on NodeBB v4.14.0 — Federation regression fixes, security fixes, and more! 3 days ago:
@silverpill@mitra.social are they new activities or resends? I want to know whether this is an issue that has been fixed (but stale queue items persist), or whether it's an unfixed issue.
- Submitted 3 days ago to nodebb-development@community.nodebb.org | 0 comments
- Submitted 4 days ago to nodebb-development@community.nodebb.org | 6 comments
- Submitted 1 month ago to nodebb-development@community.nodebb.org | 2 comments
- Submitted 2 months ago to nodebb-development@community.nodebb.org | 5 comments
- Submitted 2 months ago to nodebb-development@community.nodebb.org | 0 comments
- Submitted 2 months ago to nodebb-development@community.nodebb.org | 0 comments
- Comment on Pre-Alpha ActivityPub-related bug reports 2 years ago:
Fixed a minor issue involving replying to topics in
/world(in that it actually works now). - Comment on Hashtags are now supported in the NodeBB-ActivityPub integration 2 years ago:
@crazycells you're passing the naked url which is not correct. You have to run it through
encodeURIComponent()before using it as an url fragmentNote the % ended symbols in my post above
Ah, if you mean via the menu, I suppose that needs to be fixed.
- Comment on Hashtags are now supported in the NodeBB-ActivityPub integration 2 years ago:
The "copy permalink" issue doesn't seem to refer to the incorrect link anymore, but even so, you're able to use that link as a shorthand to get to a post within a topic.
Not exactly the nicest looking of URLs but it will function as intended.
- Comment on Notifications on remote interactions 2 years ago:
Quick update: you are now able to mention individual users in your posts, and if you are mentioned in return, you will now be notified.
There was also a bug where remote user avatars were not showing up in your notification inbox. That has now been rectified.
- Submitted 2 years ago to activitypub@community.nodebb.org | 0 comments
- Submitted 2 years ago to activitypub@community.nodebb.org | 0 comments
- Comment on Pre-Alpha ActivityPub-related bug reports 2 years ago:
Might be, but iirc I only check that the response code starts with a 2.
Will have a closer look if I have time this weekend, otherwise Monday.
- Submitted 2 years ago to activitypub@community.nodebb.org | 1 comment
- Comment on Notifications on remote interactions 2 years ago:
@Jon-Pincus oh! Sorry. That won't show up here for one simple (any annoying) reason: nobody on here is following your account... so even though this belongs to the topic, Mastodon doesn't much care for context, and will only federate content out to the direct parent, and followers.
So it won't show up here... But let me rectify that somewhat by following you now 🤣
- Submitted 2 years ago to activitypub@community.nodebb.org | 7 comments
- Comment on Notifications on remote interactions 2 years ago:
@Jon-Pincus Yes for #1, because I started the topic (and for those who have participated), they automatically get notified
6bd02505-17c3-459d-bc65-0844a865608c-image.png
I am not sure about #2... when a reply comes in via ActivityPub, there is custom logic, so it didn't notify, but that might actually have changed with some updates I made this week.
But either way, even in that second case, a notification should still be sent.
- Comment on Notifications on remote interactions 2 years ago:
Yes that's right. Mastodon doesn't have a concept of topics, or following of content, so I misspoke above.
I mean to say mentions. Those aren't handled yet.
- Comment on Hashtags are now supported in the NodeBB-ActivityPub integration 2 years ago:
@crazycells thanks for reporting. In the meantime, you can copy the link from the timestamp.
- Comment on Notifications on remote interactions 2 years ago:
@crazycells there is no Mastodonian equivalent to that :smirk:
- Submitted 2 years ago to activitypub@community.nodebb.org | 9 comments
- Submitted 2 years ago to activitypub@community.nodebb.org | 7 comments
- Comment on List of Popular Mastodon Accounts to Follow [Activity Pub testing] 2 years ago:
@The-SkyFoxx nope, as federation was enabled for this forum, all users are automatically federating their content out (at least for the categories I've manually enabled federation on).
That tells me I should probably do a write-up on how this all works currently, in NodeBB.
- Comment on List of Popular Mastodon Accounts to Follow [Activity Pub testing] 2 years ago:
@The-SkyFoxx I've moved this topic to a new category I've created just for ActivityPub discussion :smile:
Topics in this new category will also federate.
Edit: Ah, unfortunately for this topic, though, as OP was not federated, replies to it seem to be automatically dropped by Mastodon. Hm.
- Submitted 2 years ago to activitypub@community.nodebb.org | 4 comments
- Comment on List of Popular Mastodon Accounts to Follow [Activity Pub testing] 2 years ago:
This is an awesome list, thank you for sharing!
Looks like I'll have to update the search plugin to handle queries soon so people don't have to manipulate URLs 😅
- Comment on My smf to NodeBB migration thread 12 years ago:
I'm also interested in seeing is
cheeriois really the bottleneck (which it very well may be).Just add the following line after the
filter:post.parsehook is fired (line 195 of postTools.js):plugins.fireHook('filter:post.parse', raw, function(parsed) { return callback(null, parsed); // <-- new lineFingers crossed, if this takes care of the majority of the slowdown, then we can try to recreate the skipped code without using
cheerio.