bluesky
Some notes from poking around at bluesky’s decentralisation.
instance
Running your own instance is trivial. There are docs, everything just works, etc. I was a little taken by the “run a new server so you can run a docker container”, but otherwise totally fine.
DNS
Bluesky requires you to point the A
record for your domain to your bluesky
PDS. This would be problematic if you’re already using your domain for something
else, which I imagine is the common case. I’m surprised they didn’t use SRV
for this.
Migration
The account
migration
docs both have a warning, and tell you that you can’t migrate back to
bsky.social
. This is surprising, since account portability is held up as one
advantage to bluesky in their paper and
protocol docs. I’ve
certainly seen the need for being able to move in fediverse.
Feed
Its really easy to see a live feed of posts with Jetstream. I wrote code to handle them all, was trivial. Bluesky is running at about 300 actions/s. A trivial go program I wrote can keep up with the feed. So, building anything might be doable.