So, I use Netlify’s webmention integration to send webmentions. It took ages to get just right, but it looks like it pings WordPress websites’ xmlrpc.php rather than a webmention endpoint. Makes sense, as xmlrpc.php will always exist, except there’s less chance your webmention will actually appear 🤷♂️
{
"type": "entry",
"author": {
"name": "@leonp",
"url": "https://fosstodon.org/@leonp",
"photo": null
},
"url": "https://fosstodon.org/@leonp/110247479458832594",
"content": {
"html": "<p>So, I use Netlify\u2019s webmention integration to send webmentions. It took ages to get just right, but it looks like it pings WordPress websites\u2019 xmlrpc.php rather than a webmention endpoint. Makes sense, as xmlrpc.php will always exist, except there\u2019s less chance your webmention will actually appear \ud83e\udd37\u200d\u2642\ufe0f</p><p> <br /><br /> \ud83c\udff7 <a href=\"https://fosstodon.org/tags/indieweb\">#<span>indieweb</span></a>,netlify,webmention<br /><a href=\"https://www.thisdaysportion.com/notes/more-webmention-woes\"><span>https://www.</span><span>thisdaysportion.com/notes/more</span><span>-webmention-woes</span></a></p>",
"text": "So, I use Netlify\u2019s webmention integration to send webmentions. It took ages to get just right, but it looks like it pings WordPress websites\u2019 xmlrpc.php rather than a webmention endpoint. Makes sense, as xmlrpc.php will always exist, except there\u2019s less chance your webmention will actually appear \ud83e\udd37\u200d\u2642\ufe0f \n\n \ud83c\udff7 #indieweb,netlify,webmention\nhttps://www.thisdaysportion.com/notes/more-webmention-woes"
},
"published": "2023-04-23T09:43:53+00:00",
"post-type": "note",
"_id": "36733215",
"_source": "7235",
"_is_read": false
}
One of the pretty neat innovations from #Mastodon has been actual, functional, and fairly reliable (from all accounts I’ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.
To be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon’s documentation:
In short, moving: * all your profile information * moving all your followers & followings, transparently * redirecting your old account to your new one
More at that link. From the docs, it’s clear that quite a bit of thought & consideration went into the design & implementation.
Once I had setup #BridgyFed to #federate posts from my own site¹, I myself made use of the this Mastodon feature to migrate from my try-it-out @t@xoxo.zone account to my #IndieWeb@tantek.com (move destination handled by BridgyFed).
For me the migration experience was 100%, because I had not posted anything @t@xoxo.zone.
The challenge of post migration is not unique to Mastodon, though I believe it goes beyond “simple” export & import support, which is still a good place to start.
Mastodon has two forms of posts “export” currently: * RSS feeds, which will get you some number of recent posts, by adding ".rss" to the end of any Mastodon profile URL, e.g. https://indieweb.social/@tchambers.rss * Activity Streams 2.0 JSON, per https://docs.joinmastodon.org/user/moving/#export (note: it currently says “ActivityPub JSON format”, but there is no such thing, #ActivityPub uses the #ActivityStreams 2.0 JSON format and I’ve filed a PR² to fix this in the docs)
Lots of software & services import RSS, e.g. #WordPress.
As far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.
There is a more complete format (with specification!) for exporting & importing blog content:
Blog Archive Format has the very nice features of: * portable HTML feed (h-feed) and JSON Feed * photos and other media * locally browsable post archive
Naturally, https://micro.blog/ supports both exporting & importing Blog Archive Format.
There’s an interesting opportunity here for an open source converter * from Activity Streams 2.0 * to Blog Archive Format
Such a library would make an excellent drop-in addition to any #ActivityPub implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.
This would be a good first step, using an open standard, towards Mastodon itself supporting post migration³.
Ideally, similar to account migration, the old posts server should also at least: * redirect old permalinks to the new permalinks * redirect any replies being delivered by ActivityPub to the new location * provide #Webmention discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers) for some amount of time.
Want to add support for Blog Archive Format or got questions or feedback?
{
"type": "entry",
"published": "2023-04-22 17:40-0700",
"url": "http://tantek.com/2023/112/t2/account-migration-post-blog-archive-format",
"category": [
"Mastodon",
"BridgyFed",
"federate",
"IndieWeb",
"ActivityPub",
"ActivityStreams",
"WordPress",
"Webmention",
"100DaysOfIndieWeb",
"100Days"
],
"content": {
"text": "One of the pretty neat innovations from #Mastodon has been actual, functional, and fairly reliable (from all accounts I\u2019ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.\n\nTo be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon\u2019s documentation:\n\nhttps://docs.joinmastodon.org/user/moving/#migration\n\nIn short, moving:\n* all your profile information\n* moving all your followers & followings, transparently \n* redirecting your old account to your new one\n\nMore at that link. From the docs, it\u2019s clear that quite a bit of thought & consideration went into the design & implementation.\n\nOnce I had setup #BridgyFed to #federate posts from my own site\u00b9, I myself made use of the this Mastodon feature to migrate from my try-it-out @t@xoxo.zone account to my #IndieWeb @tantek.com (move destination handled by BridgyFed).\n\nFor me the migration experience was 100%, because I had not posted anything @t@xoxo.zone.\n\nThe challenge of post migration is not unique to Mastodon, though I believe it goes beyond \u201csimple\u201d export & import support, which is still a good place to start.\n\nMastodon has two forms of posts \u201cexport\u201d currently:\n* RSS feeds, which will get you some number of recent posts, by adding \".rss\" to the end of any Mastodon profile URL, e.g. https://indieweb.social/@tchambers.rss\n* Activity Streams 2.0 JSON, per https://docs.joinmastodon.org/user/moving/#export (note: it currently says \u201cActivityPub JSON format\u201d, but there is no such thing, #ActivityPub uses the #ActivityStreams 2.0 JSON format and I\u2019ve filed a PR\u00b2 to fix this in the docs)\n\nLots of software & services import RSS, e.g. #WordPress.\n\nAs far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.\n\nThere is a more complete format (with specification!) for exporting & importing blog content:\n\nBlog Archive Format (.bar), first specified here with example file:\n* https://www.manton.org/2017/11/24/blog-archive-format.html\nMore details and another example file:\n* https://www.manton.org/2021/12/27/importing-blog-archive.html\n\nBlog Archive Format has the very nice features of:\n* portable HTML feed (h-feed) and JSON Feed\n* photos and other media\n* locally browsable post archive\n\nNaturally, https://micro.blog/ supports both exporting & importing Blog Archive Format.\n\nThere\u2019s an interesting opportunity here for an open source converter \n* from Activity Streams 2.0 \n* to Blog Archive Format\n\nSuch a library would make an excellent drop-in addition to any #ActivityPub implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.\n\nThis would be a good first step, using an open standard, towards Mastodon itself supporting post migration\u00b3.\n\nIdeally, similar to account migration, the old posts server should also at least:\n* redirect old permalinks to the new permalinks\n* redirect any replies being delivered by ActivityPub to the new location\n* provide #Webmention discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers)\nfor some amount of time.\n\nWant to add support for Blog Archive Format or got questions or feedback?\n\nJoin in the development conversations: https://chat.indieweb.org/dev\n\n\nThis is day 39 of #100DaysOfIndieWeb. #100Days\n\n\u2190 Day 38: https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain\n\u2192 \ud83d\udd2e\n\n\nGlossary\n\naccount migration\n\u00a0https://indieweb.org/account_migration\nblog archive format\n\u00a0https://indieweb.org/blog_archive_format\nh-feed\n\u00a0https://microformats.org/wiki/h-feed\nJSON Feed\n\u00a0https://www.jsonfeed.org/\npost migration\n\u00a0https://indieweb.org/post_migration\nWebmention\n\u00a0https://indieweb.org/Webmention\n\nReferences\n\n\u00b9 https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\n\u00b2 https://github.com/mastodon/documentation/pull/1202\n\u00b3 https://github.com/mastodon/mastodon/issues/12423",
"html": "One of the pretty neat innovations from #<span class=\"p-category\">Mastodon</span> has been actual, functional, and fairly reliable (from all accounts I\u2019ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.<br /><br />To be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon\u2019s documentation:<br /><br /><a href=\"https://docs.joinmastodon.org/user/moving/#migration\">https://docs.joinmastodon.org/user/moving/#migration</a><br /><br />In short, moving:<br />* all your profile information<br />* moving all your followers & followings, transparently <br />* redirecting your old account to your new one<br /><br />More at that link. From the docs, it\u2019s clear that quite a bit of thought & consideration went into the design & implementation.<br /><br />Once I had setup #<span class=\"p-category\">BridgyFed</span> to #<span class=\"p-category\">federate</span> posts from my own site<a href=\"http://tantek.com/#t5QV2_note-1\">\u00b9</a>, I myself made use of the this Mastodon feature to migrate from my try-it-out <a href=\"https://xoxo.zone/@t\">@t@xoxo.zone</a> account to my #<span class=\"p-category\">IndieWeb</span> <a href=\"https://tantek.com\">@tantek.com</a> (move destination handled by BridgyFed).<br /><br />For me the migration experience was 100%, because I had not posted anything <a href=\"https://xoxo.zone/@t\">@t@xoxo.zone</a>.<br /><br />The challenge of post migration is not unique to Mastodon, though I believe it goes beyond \u201csimple\u201d export & import support, which is still a good place to start.<br /><br />Mastodon has two forms of posts \u201cexport\u201d currently:<br />* RSS feeds, which will get you some number of recent posts, by adding \".rss\" to the end of any Mastodon profile URL, e.g. <a href=\"https://indieweb.social/@tchambers.rss\">https://indieweb.social/@tchambers.rss</a><br />* Activity Streams 2.0 JSON, per <a href=\"https://docs.joinmastodon.org/user/moving/#export\">https://docs.joinmastodon.org/user/moving/#export</a> (note: it currently says \u201cActivityPub JSON format\u201d, but there is no such thing, #<span class=\"p-category\">ActivityPub</span> uses the #<span class=\"p-category\">ActivityStreams</span> 2.0 JSON format and I\u2019ve filed a PR<a href=\"http://tantek.com/#t5QV2_note-2\">\u00b2</a> to fix this in the docs)<br /><br />Lots of software & services import RSS, e.g. #<span class=\"p-category\">WordPress</span>.<br /><br />As far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.<br /><br />There is a more complete format (with specification!) for exporting & importing blog content:<br /><br />Blog Archive Format (.bar), first specified here with example file:<br />* <a href=\"https://www.manton.org/2017/11/24/blog-archive-format.html\">https://www.manton.org/2017/11/24/blog-archive-format.html</a><br />More details and another example file:<br />* <a href=\"https://www.manton.org/2021/12/27/importing-blog-archive.html\">https://www.manton.org/2021/12/27/importing-blog-archive.html</a><br /><br />Blog Archive Format has the very nice features of:<br />* portable HTML feed (h-feed) and JSON Feed<br />* photos and other media<br />* locally browsable post archive<br /><br />Naturally, <a href=\"https://micro.blog/\">https://micro.blog/</a> supports both exporting & importing Blog Archive Format.<br /><br />There\u2019s an interesting opportunity here for an open source converter <br />* from Activity Streams 2.0 <br />* to Blog Archive Format<br /><br />Such a library would make an excellent drop-in addition to any #<span class=\"p-category\">ActivityPub</span> implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.<br /><br />This would be a good first step, using an open standard, towards Mastodon itself supporting post migration<a href=\"http://tantek.com/#t5QV2_note-3\">\u00b3</a>.<br /><br />Ideally, similar to account migration, the old posts server should also at least:<br />* redirect old permalinks to the new permalinks<br />* redirect any replies being delivered by ActivityPub to the new location<br />* provide #<span class=\"p-category\">Webmention</span> discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers)<br />for some amount of time.<br /><br />Want to add support for Blog Archive Format or got questions or feedback?<br /><br />Join in the development conversations: <a href=\"https://chat.indieweb.org/dev\">https://chat.indieweb.org/dev</a><br /><br /><br />This is day 39 of #<span class=\"p-category\">100DaysOfIndieWeb</span>. #<span class=\"p-category\">100Days</span><br /><br />\u2190 Day 38: <a href=\"https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain\">https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain</a><br />\u2192 \ud83d\udd2e<br /><br /><br />Glossary<br /><br />account migration<br />\u00a0<a href=\"https://indieweb.org/account_migration\">https://indieweb.org/account_migration</a><br />blog archive format<br />\u00a0<a href=\"https://indieweb.org/blog_archive_format\">https://indieweb.org/blog_archive_format</a><br />h-feed<br />\u00a0<a href=\"https://microformats.org/wiki/h-feed\">https://microformats.org/wiki/h-feed</a><br />JSON Feed<br />\u00a0<a href=\"https://www.jsonfeed.org/\">https://www.jsonfeed.org/</a><br />post migration<br />\u00a0<a href=\"https://indieweb.org/post_migration\">https://indieweb.org/post_migration</a><br />Webmention<br />\u00a0<a href=\"https://indieweb.org/Webmention\">https://indieweb.org/Webmention</a><br /><br />References<br /><br /><a href=\"http://tantek.com/#t5QV2_ref-1\">\u00b9</a> <a href=\"https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\">https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb</a><br /><a href=\"http://tantek.com/#t5QV2_ref-2\">\u00b2</a> <a href=\"https://github.com/mastodon/documentation/pull/1202\">https://github.com/mastodon/documentation/pull/1202</a><br /><a href=\"http://tantek.com/#t5QV2_ref-3\">\u00b3</a> <a href=\"https://github.com/mastodon/mastodon/issues/12423\">https://github.com/mastodon/mastodon/issues/12423</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "36729126",
"_source": "1",
"_is_read": false
}
In short: using my own #IndieWeb blog and blogging software, which has no length limit.
A bit longer:
I make my posts by writing them in @barebones.com’s excellent BBEdit (@bbedit@mastodon.social) text editor, scp them to my blog, which does all sorts of automatic linking (including #hashtags), embedding, generating of archives, streams, feeds, sequential navigation, etc.
{
"type": "entry",
"published": "2023-04-22 16:18-0700",
"url": "http://tantek.com/2023/112/t1/",
"category": [
"IndieWeb",
"hashtags",
"BridgyFed",
"federate",
"fediverse",
"Mastodon",
"ActivityPub"
],
"in-reply-to": [
"https://union.place/@Frankc1450/110228788126722907"
],
"content": {
"text": "Thanks @Frankc1450@union.place!\n\nIn short: using my own #IndieWeb blog and blogging software, which has no length limit.\n\nA bit longer:\n\nI make my posts by writing them in @barebones.com\u2019s excellent BBEdit (@bbedit@mastodon.social) text editor, scp them to my blog, which does all sorts of automatic linking (including #hashtags), embedding, generating of archives, streams, feeds, sequential navigation, etc.\n\nI use #BridgyFed to #federate my posts to #fediverse followers on #Mastodon and other #ActivityPub supporting services. More details on that here: https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb",
"html": "Thanks <a href=\"https://union.place/@Frankc1450\">@Frankc1450@union.place</a>!<br /><br />In short: using my own #<span class=\"p-category\">IndieWeb</span> blog and blogging software, which has no length limit.<br /><br />A bit longer:<br /><br />I make my posts by writing them in <a href=\"https://barebones.com\">@barebones.com</a>\u2019s excellent BBEdit (<a href=\"https://mastodon.social/@bbedit\">@bbedit@mastodon.social</a>) text editor, scp them to my blog, which does all sorts of automatic linking (including #<span class=\"p-category\">hashtags</span>), embedding, generating of archives, streams, feeds, sequential navigation, etc.<br /><br />I use #<span class=\"p-category\">BridgyFed</span> to #<span class=\"p-category\">federate</span> my posts to #<span class=\"p-category\">fediverse</span> followers on #<span class=\"p-category\">Mastodon</span> and other #<span class=\"p-category\">ActivityPub</span> supporting services. More details on that here: <a href=\"https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\">https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "reply",
"refs": {
"https://union.place/@Frankc1450/110228788126722907": {
"type": "entry",
"url": "https://union.place/@Frankc1450/110228788126722907",
"name": "union.place user Frankc1450\u2019s post",
"post-type": "article"
}
},
"_id": "36729127",
"_source": "1",
"_is_read": false
}
In short: using my own #IndieWeb blog and blogging software, which has no length limit.
A bit longer:
I make my posts by writing them in @barebones.com’s excellent BBEdit (@bbedit@mastodon.social) text editor, scp them to my blog, which does all sorts of automatic linking (including #hashtags), embedding, generating of archives, streams, feeds, sequential navigation, etc.
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fed.brid.gy/r/https://tantek.com/2023/112/t1/",
"content": {
"html": "Thanks <a href=\"https://union.place/@Frankc1450\">@Frankc1450@union.place</a>!<br /><br />In short: using my own <a href=\"https://indieweb.social/tags/IndieWeb\">#<span class=\"p-category\">IndieWeb</span></a> blog and blogging software, which has no length limit.<br /><br />A bit longer:<br /><br />I make my posts by writing them in <a href=\"https://barebones.com\">@barebones.com</a>\u2019s excellent BBEdit (<a href=\"https://mastodon.social/@bbedit\">@bbedit@mastodon.social</a>) text editor, scp them to my blog, which does all sorts of automatic linking (including <a href=\"https://indieweb.social/tags/hashtags\">#<span class=\"p-category\">hashtags</span></a>), embedding, generating of archives, streams, feeds, sequential navigation, etc.<br /><br />I use <a href=\"https://indieweb.social/tags/BridgyFed\">#<span class=\"p-category\">BridgyFed</span></a> to <a href=\"https://indieweb.social/tags/federate\">#<span class=\"p-category\">federate</span></a> my posts to <a href=\"https://indieweb.social/tags/fediverse\">#<span class=\"p-category\">fediverse</span></a> followers on <a href=\"https://indieweb.social/tags/Mastodon\">#<span class=\"p-category\">Mastodon</span></a> and other <a href=\"https://indieweb.social/tags/ActivityPub\">#<span class=\"p-category\">ActivityPub</span></a> supporting services. More details on that here: <a href=\"https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\">https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb</a>",
"text": "Thanks @Frankc1450@union.place!\n\nIn short: using my own #IndieWeb blog and blogging software, which has no length limit.\n\nA bit longer:\n\nI make my posts by writing them in @barebones.com\u2019s excellent BBEdit (@bbedit@mastodon.social) text editor, scp them to my blog, which does all sorts of automatic linking (including #hashtags), embedding, generating of archives, streams, feeds, sequential navigation, etc.\n\nI use #BridgyFed to #federate my posts to #fediverse followers on #Mastodon and other #ActivityPub supporting services. More details on that here: https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb"
},
"published": "2023-04-22T23:18:00+00:00",
"post-type": "note",
"_id": "36728385",
"_source": "7235",
"_is_read": false
}
One of the pretty neat innovations from #Mastodon has been actual, functional, and fairly reliable (from all accounts I’ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.
To be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon’s documentation:
In short, moving: * all your profile information * moving all your followers & followings, transparently * redirecting your old account to your new one
More at that link. From the docs, it’s clear that quite a bit of thought & consideration went into the design & implementation.
Once I had setup #BridgyFed to #federate posts from my own site¹, I myself made use of the this Mastodon feature to migrate from my try-it-out @t@xoxo.zone account to my #IndieWeb@tantek.com (move destination handled by BridgyFed).
For me the migration experience was 100%, because I had not posted anything @t@xoxo.zone.
The challenge of post migration is not unique to Mastodon, though I believe it goes beyond “simple” export & import support, which is still a good place to start.
Mastodon has two forms of posts “export” currently: * RSS feeds, which will get you some number of recent posts, by adding ".rss" to the end of any Mastodon profile URL, e.g. https://indieweb.social/@tchambers.rss * Activity Streams 2.0 JSON, per https://docs.joinmastodon.org/user/moving/#export (note: it currently says “ActivityPub JSON format”, but there is no such thing, #ActivityPub uses the #ActivityStreams 2.0 JSON format and I’ve filed a PR² to fix this in the docs)
Lots of software & services import RSS, e.g. #WordPress.
As far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.
There is a more complete format (with specification!) for exporting & importing blog content:
Blog Archive Format has the very nice features of: * portable HTML feed (h-feed) and JSON Feed * photos and other media * locally browsable post archive
Naturally, https://micro.blog/ supports both exporting & importing Blog Archive Format.
There’s an interesting opportunity here for an open source converter * from Activity Streams 2.0 * to Blog Archive Format
Such a library would make an excellent drop-in addition to any #ActivityPub implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.
This would be a good first step, using an open standard, towards Mastodon itself supporting post migration³.
Ideally, similar to account migration, the old posts server should also at least: * redirect old permalinks to the new permalinks * redirect any replies being delivered by ActivityPub to the new location * provide #Webmention discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers) for some amount of time.
Want to add support for Blog Archive Format or got questions or feedback?
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fed.brid.gy/r/https://tantek.com/2023/112/t2/account-migration-post-blog-archive-format",
"content": {
"html": "One of the pretty neat innovations from <a href=\"https://indieweb.social/tags/Mastodon\">#<span class=\"p-category\">Mastodon</span></a> has been actual, functional, and fairly reliable (from all accounts I\u2019ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.<br /><br />To be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon\u2019s documentation:<br /><br /><a href=\"https://docs.joinmastodon.org/user/moving/#migration\">https://docs.joinmastodon.org/user/moving/#migration</a><br /><br />In short, moving:<br />* all your profile information<br />* moving all your followers & followings, transparently <br />* redirecting your old account to your new one<br /><br />More at that link. From the docs, it\u2019s clear that quite a bit of thought & consideration went into the design & implementation.<br /><br />Once I had setup <a href=\"https://indieweb.social/tags/BridgyFed\">#<span class=\"p-category\">BridgyFed</span></a> to <a href=\"https://indieweb.social/tags/federate\">#<span class=\"p-category\">federate</span></a> posts from my own site\u00b9, I myself made use of the this Mastodon feature to migrate from my try-it-out <a href=\"https://xoxo.zone/@t\">@t@xoxo.zone</a> account to my <a href=\"https://indieweb.social/tags/IndieWeb\">#<span class=\"p-category\">IndieWeb</span></a> <a href=\"https://tantek.com\">@tantek.com</a> (move destination handled by BridgyFed).<br /><br />For me the migration experience was 100%, because I had not posted anything <a href=\"https://xoxo.zone/@t\">@t@xoxo.zone</a>.<br /><br />The challenge of post migration is not unique to Mastodon, though I believe it goes beyond \u201csimple\u201d export & import support, which is still a good place to start.<br /><br />Mastodon has two forms of posts \u201cexport\u201d currently:<br />* RSS feeds, which will get you some number of recent posts, by adding \".rss\" to the end of any Mastodon profile URL, e.g. <a href=\"https://indieweb.social/@tchambers.rss\">https://indieweb.social/@tchambers.rss</a><br />* Activity Streams 2.0 JSON, per <a href=\"https://docs.joinmastodon.org/user/moving/#export\">https://docs.joinmastodon.org/user/moving/#export</a> (note: it currently says \u201cActivityPub JSON format\u201d, but there is no such thing, <a href=\"https://indieweb.social/tags/ActivityPub\">#<span class=\"p-category\">ActivityPub</span></a> uses the <a href=\"https://indieweb.social/tags/ActivityStreams\">#<span class=\"p-category\">ActivityStreams</span></a> 2.0 JSON format and I\u2019ve filed a PR\u00b2 to fix this in the docs)<br /><br />Lots of software & services import RSS, e.g. <a href=\"https://indieweb.social/tags/WordPress\">#<span class=\"p-category\">WordPress</span></a>.<br /><br />As far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.<br /><br />There is a more complete format (with specification!) for exporting & importing blog content:<br /><br />Blog Archive Format (.bar), first specified here with example file:<br />* <a href=\"https://www.manton.org/2017/11/24/blog-archive-format.html\">https://www.manton.org/2017/11/24/blog-archive-format.html</a><br />More details and another example file:<br />* <a href=\"https://www.manton.org/2021/12/27/importing-blog-archive.html\">https://www.manton.org/2021/12/27/importing-blog-archive.html</a><br /><br />Blog Archive Format has the very nice features of:<br />* portable HTML feed (h-feed) and JSON Feed<br />* photos and other media<br />* locally browsable post archive<br /><br />Naturally, <a href=\"https://micro.blog/\">https://micro.blog/</a> supports both exporting & importing Blog Archive Format.<br /><br />There\u2019s an interesting opportunity here for an open source converter <br />* from Activity Streams 2.0 <br />* to Blog Archive Format<br /><br />Such a library would make an excellent drop-in addition to any <a href=\"https://indieweb.social/tags/ActivityPub\">#<span class=\"p-category\">ActivityPub</span></a> implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.<br /><br />This would be a good first step, using an open standard, towards Mastodon itself supporting post migration\u00b3.<br /><br />Ideally, similar to account migration, the old posts server should also at least:<br />* redirect old permalinks to the new permalinks<br />* redirect any replies being delivered by ActivityPub to the new location<br />* provide <a href=\"https://indieweb.social/tags/Webmention\">#<span class=\"p-category\">Webmention</span></a> discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers)<br />for some amount of time.<br /><br />Want to add support for Blog Archive Format or got questions or feedback?<br /><br />Join in the development conversations: <a href=\"https://chat.indieweb.org/dev\">https://chat.indieweb.org/dev</a><br /><br /><br />This is day 39 of <a href=\"https://indieweb.social/tags/100DaysOfIndieWeb\">#<span class=\"p-category\">100DaysOfIndieWeb</span></a>. <a href=\"https://indieweb.social/tags/100Days\">#<span class=\"p-category\">100Days</span></a><br /><br />\u2190 Day 38: <a href=\"https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain\">https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain</a><br />\u2192 \ud83d\udd2e<br /><br /><br />Glossary<br /><br />account migration<br />\u00a0<a href=\"https://indieweb.org/account_migration\">https://indieweb.org/account_migration</a><br />blog archive format<br />\u00a0<a href=\"https://indieweb.org/blog_archive_format\">https://indieweb.org/blog_archive_format</a><br />h-feed<br />\u00a0<a href=\"https://microformats.org/wiki/h-feed\">https://microformats.org/wiki/h-feed</a><br />JSON Feed<br />\u00a0<a href=\"https://www.jsonfeed.org/\">https://www.jsonfeed.org/</a><br />post migration<br />\u00a0<a href=\"https://indieweb.org/post_migration\">https://indieweb.org/post_migration</a><br />Webmention<br />\u00a0<a href=\"https://indieweb.org/Webmention\">https://indieweb.org/Webmention</a><br /><br />References<br /><br />\u00b9 <a href=\"https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\">https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb</a><br />\u00b2 <a href=\"https://github.com/mastodon/documentation/pull/1202\">https://github.com/mastodon/documentation/pull/1202</a><br />\u00b3 <a href=\"https://github.com/mastodon/mastodon/issues/12423\">https://github.com/mastodon/mastodon/issues/12423</a>",
"text": "One of the pretty neat innovations from #Mastodon has been actual, functional, and fairly reliable (from all accounts I\u2019ve seen) distributed system account migration, with the notable exception of post migration, which has additional challenges worth exploring.\n\nTo be clear, as far as I know, no other blogging (or chat) software, system, or even protocol comes close to achieving the level of functionality described in Mastodon\u2019s documentation:\n\nhttps://docs.joinmastodon.org/user/moving/#migration\n\nIn short, moving:\n* all your profile information\n* moving all your followers & followings, transparently \n* redirecting your old account to your new one\n\nMore at that link. From the docs, it\u2019s clear that quite a bit of thought & consideration went into the design & implementation.\n\nOnce I had setup #BridgyFed to #federate posts from my own site\u00b9, I myself made use of the this Mastodon feature to migrate from my try-it-out @t@xoxo.zone account to my #IndieWeb @tantek.com (move destination handled by BridgyFed).\n\nFor me the migration experience was 100%, because I had not posted anything @t@xoxo.zone.\n\nThe challenge of post migration is not unique to Mastodon, though I believe it goes beyond \u201csimple\u201d export & import support, which is still a good place to start.\n\nMastodon has two forms of posts \u201cexport\u201d currently:\n* RSS feeds, which will get you some number of recent posts, by adding \".rss\" to the end of any Mastodon profile URL, e.g. https://indieweb.social/@tchambers.rss\n* Activity Streams 2.0 JSON, per https://docs.joinmastodon.org/user/moving/#export (note: it currently says \u201cActivityPub JSON format\u201d, but there is no such thing, #ActivityPub uses the #ActivityStreams 2.0 JSON format and I\u2019ve filed a PR\u00b2 to fix this in the docs)\n\nLots of software & services import RSS, e.g. #WordPress.\n\nAs far as I know, nothing (not even Mastodon itself) actually supports importing Activity Streams 2.0.\n\nThere is a more complete format (with specification!) for exporting & importing blog content:\n\nBlog Archive Format (.bar), first specified here with example file:\n* https://www.manton.org/2017/11/24/blog-archive-format.html\nMore details and another example file:\n* https://www.manton.org/2021/12/27/importing-blog-archive.html\n\nBlog Archive Format has the very nice features of:\n* portable HTML feed (h-feed) and JSON Feed\n* photos and other media\n* locally browsable post archive\n\nNaturally, https://micro.blog/ supports both exporting & importing Blog Archive Format.\n\nThere\u2019s an interesting opportunity here for an open source converter \n* from Activity Streams 2.0 \n* to Blog Archive Format\n\nSuch a library would make an excellent drop-in addition to any #ActivityPub implementation, allowing both export of posts, and also a browsable archive format, so you could visually double check when importing to another service that these were the old posts you were looking for.\n\nThis would be a good first step, using an open standard, towards Mastodon itself supporting post migration\u00b3.\n\nIdeally, similar to account migration, the old posts server should also at least:\n* redirect old permalinks to the new permalinks\n* redirect any replies being delivered by ActivityPub to the new location\n* provide #Webmention discovery forwarding from the old URLs to the new URLs (e.g. using HTTP LINK headers)\nfor some amount of time.\n\nWant to add support for Blog Archive Format or got questions or feedback?\n\nJoin in the development conversations: https://chat.indieweb.org/dev\n\n\nThis is day 39 of #100DaysOfIndieWeb. #100Days\n\n\u2190 Day 38: https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain\n\u2192 \ud83d\udd2e\n\n\nGlossary\n\naccount migration\n\u00a0https://indieweb.org/account_migration\nblog archive format\n\u00a0https://indieweb.org/blog_archive_format\nh-feed\n\u00a0https://microformats.org/wiki/h-feed\nJSON Feed\n\u00a0https://www.jsonfeed.org/\npost migration\n\u00a0https://indieweb.org/post_migration\nWebmention\n\u00a0https://indieweb.org/Webmention\n\nReferences\n\n\u00b9 https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\n\u00b2 https://github.com/mastodon/documentation/pull/1202\n\u00b3 https://github.com/mastodon/mastodon/issues/12423"
},
"published": "2023-04-23T00:40:00+00:00",
"post-type": "note",
"_id": "36727939",
"_source": "7235",
"_is_read": false
}
A #feditip to those trying other #fediverse software: Treat your new account as you would signing-up in a new #SNS.
A more detailed #feditips: 1. Let each of your account grow separately.
It is fine to follow certain groups and users. These are your ‘core’ interaction. But for the rest, keep them separate and let it grow organically.
2. Define a certain theme or topic or purpose for your new account.
Since we are in an interconnected network, you will end up having a major overlap between your first account and your succeeding accounts. Which might confuse you later (as well as your followers).
For example, I still post my new articles through my @youronlyone@c.im account, for two major reasons: Follower Badge, and #Indieweb support via #Bridgy.
3. Use this opportunity to learn how discovery, growth, and reach, works in the #MycelialNetwork (or #SocialWeb)
By letting your new account grow organically, and keeping the overlap with your first account at a minimum, you will be able to observe how discovery, growth, and reach, works in the network.
The Misskey and Calckey accounts are organically growing. I also discover new people, new content, that I haven't seen in my #Mastodon account (@youronlyone@c.im). And I asked myself, why? As I find answers to that question, I slowly adjust my interactions, and this in turn helped me discover more and reach wider.
The Mycelial Network (as I now prefer to call the Fediverse), is huge. When it started in 2008, it was small, and we all know each other. Today, I've probably only discovered and reached 0.5% of the network. It grew that fast.
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://calckey.social/notes/9dw5oldjkf",
"content": {
"html": "<p><span>A </span><a href=\"https://calckey.social/tags/feditip\">#feditip</a><span> to those trying other </span><a href=\"https://calckey.social/tags/fediverse\">#fediverse</a><span> software: Treat your new account as you would signing-up in a new </span><a href=\"https://calckey.social/tags/SNS\">#SNS</a><span>.<br /><br />A more detailed </span><a href=\"https://calckey.social/tags/feditips\">#feditips</a><span>:<br /></span><span>1. Let each of your account grow separately.</span><span><br /><br />It is fine to follow certain groups and users. These are your \u2018core\u2019 interaction. But for the rest, keep them separate and let it grow organically.<br /><br /></span><span>2. Define a certain theme or topic or purpose for your new account.</span><span><br /><br />Since we are in an interconnected network, you will end up having a major overlap between your first account and your succeeding accounts. Which might confuse you later (as well as your followers).<br /><br />For example, I still post my new articles through my </span><a class=\"u-url\" href=\"https://c.im/@youronlyone\">@youronlyone@c.im</a><span> account, for two major reasons: Follower Badge, and </span><a href=\"https://calckey.social/tags/Indieweb\">#Indieweb</a><span> support via </span><a href=\"https://calckey.social/tags/Bridgy\">#Bridgy</a><span>.<br /><br /></span><span>3. Use this opportunity to learn how discovery, growth, and reach, works in the </span><a href=\"https://calckey.social/tags/MycelialNetwork\">#MycelialNetwork</a><span> (or </span><a href=\"https://calckey.social/tags/SocialWeb\">#SocialWeb</a><span>)</span><span><br /><br />By letting your new account grow organically, and keeping the overlap with your first account at a minimum, you will be able to observe how discovery, growth, and reach, works in the network.<br /><br />I have an account for </span><a href=\"https://calckey.social/tags/Calckey\">#Calckey</a><span> at </span><a class=\"u-url\" href=\"https://calckey.social/@youronlyone@calckey.social\">@youronlyone@calckey.social</a><span><br /><br />I also have an account for </span><a href=\"https://calckey.social/tags/Misskey\">#Misskey</a><span> at </span><a class=\"u-url\" href=\"https://hashi.icu/@youronlyone\">@youronlyone@hashi.icu</a><span><br /><br />The Misskey and Calckey accounts are organically growing. I also discover new people, new content, that I haven't seen in my </span><a href=\"https://calckey.social/tags/Mastodon\">#Mastodon</a><span> account (</span><a class=\"u-url\" href=\"https://c.im/@youronlyone\">@youronlyone@c.im</a><span>). And I asked myself, why? As I find answers to that question, I slowly adjust my interactions, and this in turn helped me discover more and reach wider.<br /><br />The </span><span>Mycelial Network</span><span> (as I now prefer to call the Fediverse), is huge. When it started in 2008, it was small, and we all know each other. Today, I've probably only discovered and reached 0.5% of the network. It grew that fast.<br /><br /></span><a href=\"https://calckey.social/tags/YourOnlyOne\">#YourOnlyOne</a></p>",
"text": "A #feditip to those trying other #fediverse software: Treat your new account as you would signing-up in a new #SNS.\n\nA more detailed #feditips:\n1. Let each of your account grow separately.\n\nIt is fine to follow certain groups and users. These are your \u2018core\u2019 interaction. But for the rest, keep them separate and let it grow organically.\n\n2. Define a certain theme or topic or purpose for your new account.\n\nSince we are in an interconnected network, you will end up having a major overlap between your first account and your succeeding accounts. Which might confuse you later (as well as your followers).\n\nFor example, I still post my new articles through my @youronlyone@c.im account, for two major reasons: Follower Badge, and #Indieweb support via #Bridgy.\n\n3. Use this opportunity to learn how discovery, growth, and reach, works in the #MycelialNetwork (or #SocialWeb)\n\nBy letting your new account grow organically, and keeping the overlap with your first account at a minimum, you will be able to observe how discovery, growth, and reach, works in the network.\n\nI have an account for #Calckey at @youronlyone@calckey.social\n\nI also have an account for #Misskey at @youronlyone@hashi.icu\n\nThe Misskey and Calckey accounts are organically growing. I also discover new people, new content, that I haven't seen in my #Mastodon account (@youronlyone@c.im). And I asked myself, why? As I find answers to that question, I slowly adjust my interactions, and this in turn helped me discover more and reach wider.\n\nThe Mycelial Network (as I now prefer to call the Fediverse), is huge. When it started in 2008, it was small, and we all know each other. Today, I've probably only discovered and reached 0.5% of the network. It grew that fast.\n\n#YourOnlyOne"
},
"published": "2023-04-22T23:08:30+00:00",
"post-type": "note",
"_id": "36726859",
"_source": "7235",
"_is_read": false
}
Matt Baer blogs about the future of Write.as and WriteFreely — taking features that are currently separate products and integrating them into more of a suite:
At this point, I don’t think it makes sense for our self-hosted product to be chopped up into multiple components like our hosted tools are. Instead, I want to bring all those tools into a single application in WriteFreely.
Remark.as will also get fediverse replies. Sounds like a good direction.
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2023/04/22/matt-baer-blogs.html",
"content": {
"html": "<p><a href=\"https://write.as/matt/product-outlook-write-as-and-writefreely?pk_campaign=rss-feed\">Matt Baer blogs about</a> the future of Write.as and WriteFreely \u2014\u00a0taking features that are currently separate products and integrating them into more of a suite:</p>\n<blockquote>\n<p>At this point, I don\u2019t think it makes sense for our self-hosted product to be chopped up into multiple components like our hosted tools are. Instead, I want to bring all those tools into a single application in WriteFreely.</p>\n</blockquote>\n<p>Remark.as will also get fediverse replies. Sounds like a good direction.</p>",
"text": "Matt Baer blogs about the future of Write.as and WriteFreely \u2014\u00a0taking features that are currently separate products and integrating them into more of a suite:\n\nAt this point, I don\u2019t think it makes sense for our self-hosted product to be chopped up into multiple components like our hosted tools are. Instead, I want to bring all those tools into a single application in WriteFreely.\n\nRemark.as will also get fediverse replies. Sounds like a good direction."
},
"published": "2023-04-22T12:34:05-05:00",
"post-type": "note",
"_id": "36721522",
"_source": "12",
"_is_read": false
}
{
"type": "entry",
"published": "2023-04-22T11:25:45-0400",
"url": "https://martymcgui.re/2023/04/22/this-week-in-the-indieweb-audio-edition--april-15th---21st-2023/",
"category": [
"podcast",
"IndieWeb",
"this-week-indieweb-podcast"
],
"audio": [
"https://media.martymcgui.re/a0/f4/50/d0/367d9155348b81d423006c428139787acd84c0fe322809378c94bc71.mp3"
],
"name": "This Week in the IndieWeb Audio Edition \u2022 April 15th - 21st, 2023",
"content": {
"text": "Unblocking your blogging, Twitter login troubles, and planning IndieWebCamp Nuremburg. It\u2019s the audio edition for This Week in the IndieWeb for April 15th - 21st, 2023.\nYou can find all of my audio editions and subscribe with your favorite podcast app here: martymcgui.re/podcasts/indieweb/.\nMusic from Aaron Parecki\u2019s 100DaysOfMusic project: Day 85 - Suit, Day 48 - Glitch, Day 49 - Floating, Day 9, and Day 11\nThanks to everyone in the IndieWeb chat for their feedback and suggestions. Please drop me a note if there are any changes you\u2019d like to see for this audio edition!",
"html": "<p>Unblocking your blogging, Twitter login troubles, and planning IndieWebCamp Nuremburg. It\u2019s the audio edition for <a href=\"https://indieweb.org/this-week/2023-04-21.html\">This Week in the IndieWeb for April 15th - 21st, 2023</a>.</p>\n<p>You can find all of my audio editions and subscribe with your favorite podcast app here: <a href=\"https://martymcgui.re/podcasts/indieweb/\">martymcgui.re/podcasts/indieweb/</a>.</p>\n<p>Music from <a href=\"https://aaronparecki.com/\">Aaron Parecki</a>\u2019s <a href=\"https://100.aaronparecki.com/\">100DaysOfMusic project</a>: <a href=\"https://aaronparecki.com/2017/03/15/14/day85\">Day 85 - Suit</a>, <a href=\"https://aaronparecki.com/2017/02/06/7/day48\">Day 48 - Glitch</a>, <a href=\"https://aaronparecki.com/2017/02/07/4/day49\">Day 49 - Floating</a>, <a href=\"https://aaronparecki.com/2016/12/29/21/day-9\">Day 9</a>, and <a href=\"https://aaronparecki.com/2016/12/31/15/\">Day 11</a></p>\n<p>Thanks to everyone in the <a href=\"https://chat.indieweb.org/\">IndieWeb chat</a> for their feedback and suggestions. Please drop me a note if there are any changes you\u2019d like to see for this audio edition!</p>"
},
"author": {
"type": "card",
"name": "Marty McGuire",
"url": "https://martymcgui.re/",
"photo": "https://martymcgui.re/images/logo.jpg"
},
"post-type": "audio",
"_id": "36719141",
"_source": "175",
"_is_read": false
}
I’d like to hear from people who have De-Googled their lives. I’ve managed to cut ties with Facebook a few years ago (no Instagram, but my wife still uses it); I cut out Twitter full time back in November if I recall correctly. Google is next.
I still use search, maps, and to a much lesser extent, Gmail. I used Google Drive but I won’t be sad about losing that since I have a local (Nextcloud) alternative. #google#indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://dartboard.social/objects/8a729f42-614f-4030-b791-606b4c57e73a",
"content": {
"html": "I\u2019d like to hear from people who have De-Googled their lives. I\u2019ve managed to cut ties with Facebook a few years ago (no Instagram, but my wife still uses it); I cut out Twitter full time back in November if I recall correctly. Google is next. <br /><br />I still use search, maps, and to a much lesser extent, Gmail. I used Google Drive but I won\u2019t be sad about losing that since I have a local (Nextcloud) alternative. <a href=\"https://dartboard.social/tag/google\">#google</a> <a href=\"https://dartboard.social/tag/indieweb\">#indieweb</a>",
"text": "I\u2019d like to hear from people who have De-Googled their lives. I\u2019ve managed to cut ties with Facebook a few years ago (no Instagram, but my wife still uses it); I cut out Twitter full time back in November if I recall correctly. Google is next. \n\nI still use search, maps, and to a much lesser extent, Gmail. I used Google Drive but I won\u2019t be sad about losing that since I have a local (Nextcloud) alternative. #google #indieweb"
},
"published": "2023-04-21T23:49:38+00:00",
"post-type": "note",
"_id": "36708431",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@john_fisherman",
"url": "https://mastodon.social/@john_fisherman",
"photo": null
},
"url": "https://mastodon.social/@john_fisherman/110238083253799526",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://universeodon.com/@pixeline\">@<span>pixeline</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://social.lol/@sophie\">@<span>sophie</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@nickautomatic\">@<span>nickautomatic</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@btconf\">@<span>btconf</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://tantek.com/\">@<span>tantek.com</span></a></span> hear, hear! </p><p>I have started linking <a href=\"https://mastodon.social/tags/btconf\">#<span>btconf</span></a> folks on my website, as promised:</p><p><a href=\"https://fredrocha.net/like-minded/#btconf-sites\"><span>https://</span><span>fredrocha.net/like-minded/#btc</span><span>onf-sites</span></a></p><p>I also laid out some thoughts on what happens once you roll your own website into the wild:</p><p><a href=\"https://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/\"><span>https://</span><span>fredrocha.net/2023/04/21/build</span><span>-your-own-website-and-they-will-not-come/</span></a></p><p>If we dream together, it's doable.</p><p><a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/curation\">#<span>curation</span></a> <a href=\"https://mastodon.social/tags/discoverability\">#<span>discoverability</span></a></p>",
"text": "@pixeline @sophie @nickautomatic @btconf @tantek.com hear, hear! I have started linking #btconf folks on my website, as promised:https://fredrocha.net/like-minded/#btconf-sitesI also laid out some thoughts on what happens once you roll your own website into the wild:https://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/If we dream together, it's doable.#indieweb #curation #discoverability"
},
"published": "2023-04-21T17:54:19+00:00",
"post-type": "note",
"_id": "36702159",
"_source": "7235",
"_is_read": false
}
Creating your own website, own your data and display the things you’re into under your domain. When online, be a creator, not a consumer.
I’m all in for this mantra, but this realization stops short of a painful, cold truth; your content is probably going to be ignored. It sucks to keep sharing your content and having no one contribute and add their own opinions / takes to yours. I know because I’ve been doing this for a decade now, ah!
I posed this problem to Sophie Koonin at the closing get-together at Beyond Tellerrand conference in Düsseldorf, and she was kind enough to share some of her ideas on this. She mentioned POSSEing your content (ie, posting it on your own website and then sharing it on all the platforms), mentioned webrings and personalsit.es, but also agreed none of this will guarantee that a continued, healthy conversation will keep happening at your own personal website. Your amazingly quirky content and your exciting ideas are prone to be forever ignored by the wider web.
I’ll link to yours if you link to mine
Lots of the attendees at #BTConf are interested, on top of interesting. Lots of them have personal websites, and are kind enough to link to each other’s websites, given the chance and the right push. So I decided to stir the exchanges a bit, and posted a request for URLs:
And with this, personal sites started pinging. And I started listing them on this page. Send me your personal URL (RSS feed included, if you have it), my touch points are here. Or by simply commenting on this post.
Proposal for a man-machine powered protocol
Tantek was kind enough to hop on the previous Mastodon post and lay out some indie web approaches and technologies that can help discoverability of your content. But this ultimately is a human problem as well, recommendations need to come with social validation lest they effectively be taken into account. Ie, I am much more likely to read / follow / comment someone’s content if I have met this person or if someone recommended them to me. People belonging to a MAFIA will float up much quicker than a new kid on the block trying to get noticed. This happens across industries, because all industries are operated and run by humans.
We need an approach that not only relies on Web Mentions, ActivityPub, POSSIE, etc, but also stems from veterans and well-known (linked) people on the web linking newcomers, or simply someone who hasn’t been able to establish an online presence yet. I am not sure how this would work in practice — this is a call for discussion — but already have a name for it: AIFAM. It’s MAFIA mirrored, meaning it should work as an anti-MAFIA, a selfless and democratizing sharing of influence online. It’s pronounced “Hey, Fam! 👋”.
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/",
"content": {
"html": "<p>Creating your own website, own your data and display the things you\u2019re into under your domain. When online, be a creator, not a consumer.</p><p>I\u2019m all in for this mantra, but this realization stops short of a painful, cold truth; your content is probably going to be ignored. It sucks to keep sharing your content and having no one contribute and add their own opinions / takes to yours. I know because I\u2019ve been doing this for a decade now, ah!</p><p></p><p>I posed this problem to <a href=\"https://localghost.dev\">Sophie Koonin</a> at the closing get-together at <a href=\"http://beyondtellerrand.com\">Beyond Tellerrand conference in D\u00fcsseldorf</a>, and she was kind enough to share some of her ideas on this. She mentioned <a href=\"https://indieweb.org/POSSE\">POSSEing</a> your content (ie, posting it on your own website and then sharing it on all the platforms), mentioned <a href=\"https://hotlinewebring.club/\">webrings</a> and <a href=\"http://personalsit.es\">personalsit.es</a>, but also agreed none of this will guarantee that a continued, healthy conversation will keep happening at your own personal website. Your amazingly quirky content and your exciting ideas are prone to be forever ignored by the wider web.</p><p>I\u2019ll link to yours if you link to mine</p><p>Lots of the attendees at <a href=\"https://mastodon.social/tags/btconf\">#BTConf</a> are interested, on top of interesting. Lots of them have personal websites, and are kind enough to link to each other\u2019s websites, given the chance and the right push. So I decided to stir the exchanges a bit, and posted a request for URLs:</p><p>(<a href=\"https://mastodon.social/@john_fisherman/110224246899618915\">https://mastodon.social/@john_fisherman/110224246899618915</a>)</p><p>And with this, personal sites started pinging. And I started listing them on <a href=\"https://fredrocha.net/like-minded/#btconf-sites\">this page</a>. Send me your personal URL (RSS feed included, if you have it), my touch points are <a href=\"https://fredrocha.net/contact/\">here</a>. Or by simply commenting on this post.</p><p>Proposal for a man-machine powered protocol</p><p>Tantek was kind enough to hop on the previous Mastodon post and <a href=\"https://tantek.com/2023/109/t1/btconf-personal-url-fediverse-feed?skin=trn\">lay out some indie web approaches and technologies that can help discoverability of your content</a>. But this ultimately is a human problem as well, recommendations need to come with social validation lest they effectively be taken into account. Ie, I am much more likely to read / follow / comment someone\u2019s content if I have met this person or if someone recommended them to me. People belonging to a MAFIA will float up much quicker than a new kid on the block trying to get noticed. This happens across industries, because all industries are operated and run by humans. </p><p>We need an approach that not only relies on Web Mentions, ActivityPub, POSSIE, etc, but also stems from veterans and well-known (linked) people on the web linking newcomers, or simply someone who hasn\u2019t been able to establish an online presence yet. I am not sure how this would work in practice \u2014 this is a call for discussion \u2014 but already have a name for it: AIFAM. It\u2019s MAFIA mirrored, meaning it should work as an anti-MAFIA, a selfless and democratizing sharing of influence online. It\u2019s pronounced \u201cHey, Fam! \ud83d\udc4b\u201d.</p><p>Discuss!</p><p></p><p></p><p><a class=\"u-tag u-category\" href=\"https://fredrocha.net/tag/btconf/\">#btconf</a> <a class=\"u-tag u-category\" href=\"https://fredrocha.net/tag/indieweb/\">#indieweb</a></p><p><a href=\"https://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/\">https://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/</a></p>",
"text": "Creating your own website, own your data and display the things you\u2019re into under your domain. When online, be a creator, not a consumer.I\u2019m all in for this mantra, but this realization stops short of a painful, cold truth; your content is probably going to be ignored. It sucks to keep sharing your content and having no one contribute and add their own opinions / takes to yours. I know because I\u2019ve been doing this for a decade now, ah!I posed this problem to Sophie Koonin at the closing get-together at Beyond Tellerrand conference in D\u00fcsseldorf, and she was kind enough to share some of her ideas on this. She mentioned POSSEing your content (ie, posting it on your own website and then sharing it on all the platforms), mentioned webrings and personalsit.es, but also agreed none of this will guarantee that a continued, healthy conversation will keep happening at your own personal website. Your amazingly quirky content and your exciting ideas are prone to be forever ignored by the wider web.I\u2019ll link to yours if you link to mineLots of the attendees at #BTConf are interested, on top of interesting. Lots of them have personal websites, and are kind enough to link to each other\u2019s websites, given the chance and the right push. So I decided to stir the exchanges a bit, and posted a request for URLs:(https://mastodon.social/@john_fisherman/110224246899618915)And with this, personal sites started pinging. And I started listing them on this page. Send me your personal URL (RSS feed included, if you have it), my touch points are here. Or by simply commenting on this post.Proposal for a man-machine powered protocolTantek was kind enough to hop on the previous Mastodon post and lay out some indie web approaches and technologies that can help discoverability of your content. But this ultimately is a human problem as well, recommendations need to come with social validation lest they effectively be taken into account. Ie, I am much more likely to read / follow / comment someone\u2019s content if I have met this person or if someone recommended them to me. People belonging to a MAFIA will float up much quicker than a new kid on the block trying to get noticed. This happens across industries, because all industries are operated and run by humans. We need an approach that not only relies on Web Mentions, ActivityPub, POSSIE, etc, but also stems from veterans and well-known (linked) people on the web linking newcomers, or simply someone who hasn\u2019t been able to establish an online presence yet. I am not sure how this would work in practice \u2014 this is a call for discussion \u2014 but already have a name for it: AIFAM. It\u2019s MAFIA mirrored, meaning it should work as an anti-MAFIA, a selfless and democratizing sharing of influence online. It\u2019s pronounced \u201cHey, Fam! \ud83d\udc4b\u201d.Discuss!#btconf #indiewebhttps://fredrocha.net/2023/04/21/build-your-own-website-and-they-will-not-come/"
},
"published": "2023-04-21T17:28:02+00:00",
"post-type": "note",
"_id": "36701531",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@voxpelli",
"url": "https://mastodon.social/@voxpelli",
"photo": null
},
"url": "https://mastodon.social/@voxpelli/110237621219568714",
"content": {
"html": "<p>For this weeks <a href=\"https://mastodon.social/tags/FollowFriday\">#<span>FollowFriday</span></a> I want to suggest:</p><p>Follow hashtags here on Mastodon!</p><p>Eg: <a href=\"https://mastodon.social/tags/webmention\">#<span>webmention</span></a> or <a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a></p><p>Perhaps <a href=\"https://mastodon.social/tags/nodejs\">#<span>nodejs</span></a> or <a href=\"https://mastodon.social/tags/rp2040\">#<span>rp2040</span></a></p><p>A great way to find new people and great posts.</p><p>Also: Remember to add hashtags and to use camel case / pascal case when doing so!</p>",
"text": "For this weeks #FollowFriday I want to suggest:Follow hashtags here on Mastodon!Eg: #webmention or #IndieWebPerhaps #nodejs or #rp2040A great way to find new people and great posts.Also: Remember to add hashtags and to use camel case / pascal case when doing so!"
},
"published": "2023-04-21T15:56:48+00:00",
"post-type": "note",
"_id": "36699751",
"_source": "7235",
"_is_read": false
}
Now, this is super interesting. Last night, I asked how people display #Webmentions on their (#IndieWeb) sites. I already got a few really good answers, including e.g. the sites of @sia, @nhoizey, and @andy. 🙏
But now, I want more. 😁 And I’ll write a summary (with details), of course.
Have you seen a Webmention implementation with great UX or anything that looks like a great best practice? LMK below!
{
"type": "entry",
"author": {
"name": "@matthiasott",
"url": "https://mastodon.social/@matthiasott",
"photo": null
},
"url": "https://mastodon.social/@matthiasott/110237473281803466",
"content": {
"html": "<p>Now, this is super interesting. Last night, I asked how people display <a href=\"https://mastodon.social/tags/Webmentions\">#<span>Webmentions</span></a> on their (<a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a>) sites. I already got a few really good answers, including e.g. the sites of <span class=\"h-card\"><a class=\"u-url\" href=\"https://front-end.social/@sia\">@<span>sia</span></a></span>, <span class=\"h-card\"><a class=\"u-url\" href=\"https://mamot.fr/@nhoizey\">@<span>nhoizey</span></a></span>, and <span class=\"h-card\"><a class=\"u-url\" href=\"https://bell.bz/@andy\">@<span>andy</span></a></span>. \ud83d\ude4f</p><p>But now, I want more. \ud83d\ude01 And I\u2019ll write a summary (with details), of course. </p><p>Have you seen a Webmention implementation with great UX or anything that looks like a great best practice? LMK below!</p><p>\ud83d\udc47</p>",
"text": "Now, this is super interesting. Last night, I asked how people display #Webmentions on their (#IndieWeb) sites. I already got a few really good answers, including e.g. the sites of @sia, @nhoizey, and @andy. \ud83d\ude4fBut now, I want more. \ud83d\ude01 And I\u2019ll write a summary (with details), of course. Have you seen a Webmention implementation with great UX or anything that looks like a great best practice? LMK below!\ud83d\udc47"
},
"published": "2023-04-21T15:19:11+00:00",
"post-type": "note",
"_id": "36698429",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2023/04/21/tantek-elik-blogs.html",
"content": {
"html": "<p><a href=\"https://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain\">Tantek \u00c7elik blogs about yesterday\u2019s The Verge article on ActivityPub</a>, underscoring some of the IndieWeb principles that are covered. There\u2019s really a lot in there and I\u2019m glad to see the article getting so much attention. Thanks <a href=\"https://micro.blog/pierce@mas.to\">@pierce@mas.to</a>!</p>",
"text": "Tantek \u00c7elik blogs about yesterday\u2019s The Verge article on ActivityPub, underscoring some of the IndieWeb principles that are covered. There\u2019s really a lot in there and I\u2019m glad to see the article getting so much attention. Thanks @pierce@mas.to!"
},
"published": "2023-04-21T08:28:06-05:00",
"post-type": "note",
"_id": "36696114",
"_source": "12",
"_is_read": false
}
After nearly two decades of fighting for this vision of the internet, the people who believed in federation feel like they’re finally going to win. The change they imagine still requires a lot of user education — and a lot of work to make this stuff work for users. But the fundamental shift, from platforms to protocols, appears to have momentum in a way it never has before.
{
"type": "entry",
"published": "2023-04-21T11:20:38Z",
"url": "https://adactio.com/links/20116",
"category": [
"activitypub",
"fediverse",
"mastodon",
"twitter",
"portable",
"social",
"networks",
"portability",
"indieweb",
"protocols",
"standards"
],
"bookmark-of": [
"https://www.theverge.com/2023/4/20/23689570/activitypub-protocol-standard-social-network"
],
"content": {
"text": "ActivityPub is the next big thing in social networks - The Verge\n\n\n\n\n After nearly two decades of fighting for this vision of the internet, the people who believed in federation feel like they\u2019re finally going to win. The change they imagine still requires a lot of user education \u2014 and a lot of work to make this stuff work for users. But the fundamental shift, from platforms to protocols, appears to have momentum in a way it never has before.",
"html": "<h3>\n<a class=\"p-name u-bookmark-of\" href=\"https://www.theverge.com/2023/4/20/23689570/activitypub-protocol-standard-social-network\">\nActivityPub is the next big thing in social networks - The Verge\n</a>\n</h3>\n\n<blockquote>\n <p>After nearly two decades of fighting for this vision of the internet, the people who believed in federation feel like they\u2019re finally going to win. The change they imagine still requires a lot of user education \u2014 and a lot of work to make this stuff work for users. But the fundamental shift, from platforms to protocols, appears to have momentum in a way it never has before.</p>\n</blockquote>"
},
"author": {
"type": "card",
"name": "Jeremy Keith",
"url": "https://adactio.com/",
"photo": "https://adactio.com/images/photo-150.jpg"
},
"post-type": "bookmark",
"_id": "36694284",
"_source": "2",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@liztai",
"url": "https://hachyderm.io/@liztai",
"photo": null
},
"url": "https://hachyderm.io/@liztai/110235591328462307",
"content": {
"html": "<p>I am really impatient for <a href=\"https://hachyderm.io/tags/SocialMedia\">#<span>SocialMedia</span></a> to become more like email and for all walled gardens to just connect with one another already.</p><p>\ud83d\ude10</p><p><a href=\"https://hachyderm.io/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://hachyderm.io/tags/ActivityPub\">#<span>ActivityPub</span></a></p>",
"text": "I am really impatient for #SocialMedia to become more like email and for all walled gardens to just connect with one another already.\ud83d\ude10#IndieWeb #ActivityPub"
},
"published": "2023-04-21T07:20:35+00:00",
"post-type": "note",
"_id": "36689807",
"_source": "7235",
"_is_read": false
}
I was very happy to see that he also clearly communicated several #IndieWeb principles¹, practices, goals, and reasons why². Like this quote:
“But the advice you’ll hear from most people in this space is this: own your own domain. Don’t be john@/mastodon.social or anna@/facebook.com. Have a space that is yours, that belongs to you, a username and identity that can’t disappear just because a company goes out of business or sells to a megalomaniac.”
and this:
“It’s [your own domain is] your YouTube channel name and your TikTok username and your Instagram handle and your phone number and your Twitter @, all in one name.”
“If you solve identity with domain names, it makes things easier because it fits the way the web has been for 20 years,”
Pierce also noted:
“you might soon be able to turn your personal website into your entire social identity online”
Already can.
I replied to Pierce’s post³ about his article noting this⁴, from #federating directly from my website for the past ~6 months⁵, to over a decade of using it as my social identity with the POSSE method⁶ with various #socialMedia silos.
It’s important enough that I’ll repeat part of Pierce’s quote at the top:
{
"type": "entry",
"published": "2023-04-20 17:57-0700",
"url": "http://tantek.com/2023/110/t2/beyond-mastodon-indieweb-own-domain",
"category": [
"ActivityPub",
"Mastodon",
"IndieWeb",
"federating",
"socialMedia",
"100DaysOfIndieWeb",
"100Days"
],
"content": {
"text": "In https://www.theverge.com/2023/4/20/23689570/activitypub-protocol-standard-social-network, author @pierce@mas.to does an excellent job covering a broad range of #ActivityPub related updates, and goes beyond the usual #Mastodon focus to describe numerous implementations.\n\nI was very happy to see that he also clearly communicated several #IndieWeb principles\u00b9, practices, goals, and reasons why\u00b2. Like this quote:\n\n\u00a0\u201cBut the advice you\u2019ll hear from most people in this space is this: own your own domain. Don\u2019t be john@/mastodon.social or anna@/facebook.com. Have a space that is yours, that belongs to you, a username and identity that can\u2019t disappear just because a company goes out of business or sells to a megalomaniac.\u201d\n\nand this:\n\n\u00a0\u201cIt\u2019s [your own domain is] your YouTube channel name and your TikTok username and your Instagram handle and your phone number and your Twitter @, all in one name.\u201d\n\nGreat interviews with @stevetex@mozilla.social, @mike@flipboard.social, @dustycloud.org (@cwebber@octodon.social), @evanp.me (@evan@cosocial.ca), @anildash.com (@anildash@me.dm), @coachtony@me.dm, and @manton.org.\n\nAs Manton said in the article:\n\n\u00a0\u201cIf you solve identity with domain names, it makes things easier because it fits the way the web has been for 20 years,\u201d\n\nPierce also noted:\n\n\u00a0\u201cyou might soon be able to turn your personal website into your entire social identity online\u201d\n\u00a0\nAlready can.\n\nI replied to Pierce\u2019s post\u00b3 about his article noting this\u2074, from #federating directly from my website for the past ~6 months\u2075, to over a decade of using it as my social identity with the POSSE method\u2076 with various #socialMedia silos.\n\nIt\u2019s important enough that I\u2019ll repeat part of Pierce\u2019s quote at the top:\n\n\u00a0\u201cown your own domain. Don\u2019t be john@/mastodon.social or anna@/facebook.com. Have a space that is yours\u201d\n\u00a0\nHe gets it. Don\u2019t be someone at someone else\u2019s server. \n\nBig Chad or Little Chad\u2019s garages\u2077 are social media stepping stones towards owning your own domain and IndieWeb presence.\n\nWe\u2019re here when you\u2019re ready to take that next step: https://chat.indieweb.org/\n\n\nThis is day 38 of #100DaysOfIndieWeb. #100Days\n\n\u2190 Day 37: https://tantek.com/2023/109/t2/years-ago-first-federated-indieweb-thread\n\u2192 \ud83d\udd2e\n\n\n\u00b9 https://indieweb.org/principles\n\u00b2 https://indieweb.org/why\n\u00b3 https://mas.to/@pierce/110231624819547202\n\u2074 https://tantek.com/2023/110/t1/\n\u2075 https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\n\u2076 https://indieweb.org/POSSE\n\u2077 https://tantek.com/2023/001/t1/own-your-notes",
"html": "In <a href=\"https://www.theverge.com/2023/4/20/23689570/activitypub-protocol-standard-social-network\">https://www.theverge.com/2023/4/20/23689570/activitypub-protocol-standard-social-network</a>, author <a href=\"https://mas.to/@pierce\">@pierce@mas.to</a> does an excellent job covering a broad range of #<span class=\"p-category\">ActivityPub</span> related updates, and goes beyond the usual #<span class=\"p-category\">Mastodon</span> focus to describe numerous implementations.<br /><br />I was very happy to see that he also clearly communicated several #<span class=\"p-category\">IndieWeb</span> principles<a href=\"http://tantek.com/#t5QT2_note-1\">\u00b9</a>, practices, goals, and reasons why<a href=\"http://tantek.com/#t5QT2_note-2\">\u00b2</a>. Like this quote:<br /><br />\u00a0\u201cBut the advice you\u2019ll hear from most people in this space is this: own your own domain. Don\u2019t be john@/<a href=\"http://mastodon.social\">mastodon.social</a> or anna@/<a href=\"http://facebook.com\">facebook.com</a>. Have a space that is yours, that belongs to you, a username and identity that can\u2019t disappear just because a company goes out of business or sells to a megalomaniac.\u201d<br /><br />and this:<br /><br />\u00a0\u201cIt\u2019s [your own domain is] your YouTube channel name and your TikTok username and your Instagram handle and your phone number and your Twitter @, all in one name.\u201d<br /><br />Great interviews with <a href=\"https://mozilla.social/@stevetex\">@stevetex@mozilla.social</a>, <a href=\"https://flipboard.social/@mike\">@mike@flipboard.social</a>, <a href=\"https://dustycloud.org\">@dustycloud.org</a> (<a href=\"https://octodon.social/@cwebber\">@cwebber@octodon.social</a>), <a href=\"https://evanp.me\">@evanp.me</a> (<a href=\"https://cosocial.ca/@evan\">@evan@cosocial.ca</a>), <a href=\"https://anildash.com\">@anildash.com</a> (<a href=\"https://me.dm/@anildash\">@anildash@me.dm</a>), <a href=\"https://me.dm/@coachtony\">@coachtony@me.dm</a>, and <a href=\"https://manton.org\">@manton.org</a>.<br /><br />As Manton said in the article:<br /><br />\u00a0\u201cIf you solve identity with domain names, it makes things easier because it fits the way the web has been for 20 years,\u201d<br /><br />Pierce also noted:<br /><br />\u00a0\u201cyou might soon be able to turn your personal website into your entire social identity online\u201d<br />\u00a0<br />Already can.<br /><br />I replied to Pierce\u2019s post<a href=\"http://tantek.com/#t5QT2_note-3\">\u00b3</a> about his article noting this<a href=\"http://tantek.com/#t5QT2_note-4\">\u2074</a>, from #<span class=\"p-category\">federating</span> directly from my website for the past ~6 months<a href=\"http://tantek.com/#t5QT2_note-5\">\u2075</a>, to over a decade of using it as my social identity with the POSSE method<a href=\"http://tantek.com/#t5QT2_note-6\">\u2076</a> with various #<span class=\"p-category\">socialMedia</span> silos.<br /><br />It\u2019s important enough that I\u2019ll repeat part of Pierce\u2019s quote at the top:<br /><br />\u00a0\u201cown your own domain. Don\u2019t be john@/<a href=\"http://mastodon.social\">mastodon.social</a> or anna@/<a href=\"http://facebook.com\">facebook.com</a>. Have a space that is yours\u201d<br />\u00a0<br />He gets it. Don\u2019t be someone at someone else\u2019s server. <br /><br />Big Chad or Little Chad\u2019s garages<a href=\"http://tantek.com/#t5QT2_note-7\">\u2077</a> are social media stepping stones towards owning your own domain and IndieWeb presence.<br /><br />We\u2019re here when you\u2019re ready to take that next step: <a href=\"https://chat.indieweb.org/\">https://chat.indieweb.org/</a><br /><br /><br />This is day 38 of #<span class=\"p-category\">100DaysOfIndieWeb</span>. #<span class=\"p-category\">100Days</span><br /><br />\u2190 Day 37: <a href=\"https://tantek.com/2023/109/t2/years-ago-first-federated-indieweb-thread\">https://tantek.com/2023/109/t2/years-ago-first-federated-indieweb-thread</a><br />\u2192 \ud83d\udd2e<br /><br /><br /><a href=\"http://tantek.com/#t5QT2_ref-1\">\u00b9</a> <a href=\"https://indieweb.org/principles\">https://indieweb.org/principles</a><br /><a href=\"http://tantek.com/#t5QT2_ref-2\">\u00b2</a> <a href=\"https://indieweb.org/why\">https://indieweb.org/why</a><br /><a href=\"http://tantek.com/#t5QT2_ref-3\">\u00b3</a> <a href=\"https://mas.to/@pierce/110231624819547202\">https://mas.to/@pierce/110231624819547202</a><br /><a href=\"http://tantek.com/#t5QT2_ref-4\">\u2074</a> <a href=\"https://tantek.com/2023/110/t1/\">https://tantek.com/2023/110/t1/</a><br /><a href=\"http://tantek.com/#t5QT2_ref-5\">\u2075</a> <a href=\"https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb\">https://tantek.com/2022/301/t1/twittermigration-bridgyfed-mastodon-indieweb</a><br /><a href=\"http://tantek.com/#t5QT2_ref-6\">\u2076</a> <a href=\"https://indieweb.org/POSSE\">https://indieweb.org/POSSE</a><br /><a href=\"http://tantek.com/#t5QT2_ref-7\">\u2077</a> <a href=\"https://tantek.com/2023/001/t1/own-your-notes\">https://tantek.com/2023/001/t1/own-your-notes</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "36688016",
"_source": "1",
"_is_read": false
}