1
I added ActivityPub to this blog (writings.hongminhee.org)
submitted 1 week ago by to c/activitypub@lemmy.ml
2
3
4
5
6
7
submitted 2 months ago by to c/activitypub@lemmy.ml
 
 

My table of markdown editors has been put through the ringer, with a lot of changes and updates over the past six months. The latest additions include Kraa, Nota, Octarine, ZenNotes and VSCodium.

Xu2i0pgQrulVWOD.webp

8
submitted 2 months ago* (last edited 2 months ago) by to c/activitypub@lemmy.ml
 
 

Among today’s links are markdown editors Markpad, ZenNotes, Memos and an update from Binderus. Plus there’s a quick look at Albireo, a flat-file CMS

9vUxezl0oNAImWV.webp

#markdown #markdowneditors #opensource #Obsidian #ZenNotes #Memos #Binderus #Markpad #Notepad #Albireo

9
10
11
12
13
14
15
 
 

Has anyone else had this experience? I've checked that the post author is correct.

16
 
 

cross-posted from: https://lemmy.ml/post/42828264

I've recently made some updates to the ActivityPub Relay I maintain. This includes a regularly updated list of connected instances for monitoring their status and having an easy way to refer to instances for inquiry. I've also added a relay policy which states instances will be banned for featuring bigoted content or having poor admin/uptime.

I definitely have room for some more Mastodon, Misskey, and Pleroma instances.

The relay server itself is located in the east coast of the United States, but open to all regions.

ActivityPub Relay, US East: https://circlewithadot.net/services/aprelay.html

Follow on Mastodon for relay status updates and info: https://mastodon.circlewithadot.net/@cwad

17
18
19
20
 
 

I'm trying to find out where the development is at right now for ActivityPub, specifically about data (posts) portability, and persistent IDs.

For the former I think that's fairly self-explanatory, I'm just trying to get a flavour of if it's a priority, who's working on it, what the anticipated timeline is etc. It's a clear advantage that ATproto has, so are we trying to close the gap?

By the latter I mean is there work happening to work towards us being able to have one ID that can be used to log in to any fediverse network (as per nostr)? This approach makes so much sense to me - is it even possible?

The link here to W3.org doesn't seem that up to date - but I'm not that knowledgable so may have misinterpreted that site. So I'm looking for education on this subject 😊

21
22
23
 
 

My #LocalHistory website, @hoxsie.org, is now federating freely!

Happy to say that @activitypub solved a problem for me.

So if you're into random snippets of history about #Albany, #Schenectady, and #TroyNY, go ahead and give it a follow – it works!

#history #histodons #UpstateNewYork #UpstateNY

24
 
 

Hey everyone! I'm excited to introduce BotKit, a new framework specifically designed for creating standalone ActivityPub bots.

What makes BotKit different from typical Mastodon bot approaches is that it creates fully independent ActivityPub servers. This means your bots aren't constrained by platform-specific limitations like character limits or attachment restrictions. Each bot is a complete ActivityPub server in itself.

The API is designed to be extremely straightforward. You can create a complete bot in a single TypeScript file, with intuitive event handlers for follows, mentions, replies, and more. Here's a quick example:

const bot = createBot<void>({
  username: "mybot",
  name: "My Bot",
  summary: text`A bot powered by BotKit.`,
  kv: new MemoryKvStore(),
  queue: new InProcessMessageQueue(),
});

bot.onMention = async (session, message) => {
  await message.reply(text`Hi, ${message.actor}!`);
};

BotKit currently supports Deno, with plans to add Node.js and Bun support in future releases. It leverages all the federation capabilities of Fedify but abstracts away the complexity, letting you focus purely on your bot's behavior.

The framework is still in early development, but we'd love to hear your thoughts and feedback. Feel free to try it out and let us know what kind of bots you build with it!

25
 
 

Reading the spec, I can't see why not, wondering if anyone knew.

view more: next ›