A small tool to view real-world ActivityPub objects as JSON! Enter a URL
or username from Mastodon or a similar service below, and we'll send a
request with
the right
Accept
header
to the server to view the underlying object.
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"ostatus": "http://ostatus.org#",
"atomUri": "ostatus:atomUri",
"inReplyToAtomUri": "ostatus:inReplyToAtomUri",
"conversation": "ostatus:conversation",
"sensitive": "as:sensitive",
"toot": "http://joinmastodon.org/ns#",
"votersCount": "toot:votersCount"
}
],
"id": "https://fosstodon.org/users/robinm/outbox?max_id=113413619717907846&page=true",
"type": "OrderedCollectionPage",
"next": "https://fosstodon.org/users/robinm/outbox?max_id=113336579433669143&page=true",
"prev": "https://fosstodon.org/users/robinm/outbox?min_id=113412916842411547&page=true",
"partOf": "https://fosstodon.org/users/robinm/outbox",
"orderedItems": [
{
"id": "https://fosstodon.org/users/robinm/statuses/113412916842411547/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-11-02T10:36:15Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://fosstodon.org/users/rmanos"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113412916842411547",
"type": "Note",
"summary": null,
"inReplyTo": "https://fosstodon.org/users/robinm/statuses/113412892494977521",
"published": "2024-11-02T10:36:15Z",
"url": "https://fosstodon.org/@robinm/113412916842411547",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://fosstodon.org/users/rmanos"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113412916842411547",
"inReplyToAtomUri": "https://fosstodon.org/users/robinm/statuses/113412892494977521",
"conversation": "tag:fosstodon.org,2024-11-02:objectId=256787109:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@rmanos\" class=\"u-url mention\">@<span>rmanos</span></a></span> Since toots are too small, the catch+rethows or error convertion has to be implicit to works.</p><p>I'm not familiar enough with exceptions based languages, but for error based languages it's at least easy to do in Rust or in C++ (when using error value). All you need is a constructor that create a B/C from A implicitely (for C++), `impl Into<B/C> for A` in Rust.</p><p>I assume those are not the only one with at least some kind of implicit convertion.</p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@rmanos\" class=\"u-url mention\">@<span>rmanos</span></a></span> Since toots are too small, the catch+rethows or error convertion has to be implicit to works.</p><p>I'm not familiar enough with exceptions based languages, but for error based languages it's at least easy to do in Rust or in C++ (when using error value). All you need is a constructor that create a B/C from A implicitely (for C++), `impl Into<B/C> for A` in Rust.</p><p>I assume those are not the only one with at least some kind of implicit convertion.</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://fosstodon.org/users/rmanos",
"name": "@rmanos"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113412916842411547/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113412916842411547/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113412916842411547/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113412916842411547/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113412916842411547/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113412892494977521/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-11-02T10:30:03Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://fosstodon.org/users/rmanos"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113412892494977521",
"type": "Note",
"summary": null,
"inReplyTo": "https://fosstodon.org/users/rmanos/statuses/113410440782031531",
"published": "2024-11-02T10:30:03Z",
"url": "https://fosstodon.org/@robinm/113412892494977521",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://fosstodon.org/users/rmanos"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113412892494977521",
"inReplyToAtomUri": "https://fosstodon.org/users/rmanos/statuses/113410440782031531",
"conversation": "tag:fosstodon.org,2024-11-02:objectId=256787109:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@rmanos\" class=\"u-url mention\">@<span>rmanos</span></a></span> This feels so trivial to do in any language in don't even understand the issue.</p><p>f1 throws an exception/returns an error of type A. f2 catch+retrows exception A into B, or convert error A into B (in Rust with `impl Onto<B> for A` the try operator will do it implicitely, for other error-based languages). Likewise f3 catch+rethrows/convert A into C. Finaly f4 catch/match the error and prints "bank members" for A, "account empty" for B, and "investment lost" for C.</p><p>What do I miss???</p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@rmanos\" class=\"u-url mention\">@<span>rmanos</span></a></span> This feels so trivial to do in any language in don't even understand the issue.</p><p>f1 throws an exception/returns an error of type A. f2 catch+retrows exception A into B, or convert error A into B (in Rust with `impl Onto<B> for A` the try operator will do it implicitely, for other error-based languages). Likewise f3 catch+rethrows/convert A into C. Finaly f4 catch/match the error and prints "bank members" for A, "account empty" for B, and "investment lost" for C.</p><p>What do I miss???</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://fosstodon.org/users/rmanos",
"name": "@rmanos"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113412892494977521/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113412892494977521/replies?min_id=113412916842411547&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113412892494977521/replies",
"items": [
"https://fosstodon.org/users/robinm/statuses/113412916842411547"
]
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113412892494977521/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113412892494977521/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113412803174174801/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-11-02T10:07:20Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://piaille.fr/users/TofuTheSquirrel",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://piaille.fr/users/TofuTheSquirrel/statuses/113412370746369089"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113386265995064264/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-28T17:38:35Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://framapiaf.org/users/nitot"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113386265995064264",
"type": "Note",
"summary": null,
"inReplyTo": "https://framapiaf.org/users/nitot/statuses/113385979544555915",
"published": "2024-10-28T17:38:35Z",
"url": "https://fosstodon.org/@robinm/113386265995064264",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://framapiaf.org/users/nitot"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113386265995064264",
"inReplyToAtomUri": "https://framapiaf.org/users/nitot/statuses/113385979544555915",
"conversation": "tag:framapiaf.org,2024-10-28:objectId=121128182:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://framapiaf.org/@nitot\" class=\"u-url mention\">@<span>nitot</span></a></span> Je valide tellement le message. Très bon article</p>",
"contentMap": {
"fr": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://framapiaf.org/@nitot\" class=\"u-url mention\">@<span>nitot</span></a></span> Je valide tellement le message. Très bon article</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://framapiaf.org/users/nitot",
"name": "@nitot@framapiaf.org"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113386265995064264/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113386265995064264/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113386265995064264/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113386265995064264/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113386265995064264/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113386262758643896/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-28T17:37:46Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://framapiaf.org/users/nitot",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://framapiaf.org/users/nitot/statuses/113385979544555915"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113380982610657698/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-27T19:14:57Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://eldritch.cafe/users/modnarwave",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://eldritch.cafe/users/modnarwave/statuses/113374112911018704"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113380968476892005/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-27T19:11:21Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://piaille.fr/users/miko",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://piaille.fr/users/miko/statuses/113378837861577658"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113380957004519345/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-27T19:08:26Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://piaille.fr/users/Agrume",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://piaille.fr/users/Agrume/statuses/113379158433035590"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113380932636661208/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-27T19:02:14Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://mastodon.gougere.fr/users/bortzmeyer",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://mastodon.gougere.fr/users/bortzmeyer/statuses/113379596962422778"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113380908812507214/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-27T18:56:11Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://mathstodon.xyz/users/dmm",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://mathstodon.xyz/users/dmm/statuses/113379850435660561"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113374406411543587/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-26T15:22:32Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://social.nah.re/users/alex"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113374406411543587",
"type": "Note",
"summary": null,
"inReplyTo": "https://social.nah.re/users/alex/statuses/113366965002970483",
"published": "2024-10-26T15:22:32Z",
"url": "https://fosstodon.org/@robinm/113374406411543587",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://social.nah.re/users/alex"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113374406411543587",
"inReplyToAtomUri": "https://social.nah.re/users/alex/statuses/113366965002970483",
"conversation": "tag:social.nah.re,2024-10-25:objectId=3304836:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://social.nah.re/@alex\" class=\"u-url mention\">@<span>alex</span></a></span> si c'est côté font de jante c'est aussi possible que tu aies besoin de changer le-dit fond de jante. J'ai eu ce problème il y a quelques années et j'ai mis du temps à comprendre que c'était mes rayons qui perçaient ma chambre à air.</p>",
"contentMap": {
"fr": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://social.nah.re/@alex\" class=\"u-url mention\">@<span>alex</span></a></span> si c'est côté font de jante c'est aussi possible que tu aies besoin de changer le-dit fond de jante. J'ai eu ce problème il y a quelques années et j'ai mis du temps à comprendre que c'était mes rayons qui perçaient ma chambre à air.</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://social.nah.re/users/alex",
"name": "@alex@social.nah.re"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113374406411543587/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113374406411543587/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113374406411543587/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113374406411543587/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113374406411543587/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113374394523794404/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-26T15:19:31Z",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://techhub.social/users/vtourraine",
"https://mastodon.social/users/fabi1cazenave",
"https://mastodon.social/users/metacosm",
"https://mamot.fr/users/PacoVelobs",
"https://piaille.fr/users/NuclearSquid"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113374394523794404",
"type": "Note",
"summary": null,
"inReplyTo": "https://techhub.social/users/vtourraine/statuses/113373461150931116",
"published": "2024-10-26T15:19:31Z",
"url": "https://fosstodon.org/@robinm/113374394523794404",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://techhub.social/users/vtourraine",
"https://mastodon.social/users/fabi1cazenave",
"https://mastodon.social/users/metacosm",
"https://mamot.fr/users/PacoVelobs",
"https://piaille.fr/users/NuclearSquid"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113374394523794404",
"inReplyToAtomUri": "https://techhub.social/users/vtourraine/statuses/113373461150931116",
"conversation": "tag:mastodon.social,2024-10-23:objectId=829646783:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://techhub.social/@vtourraine\" class=\"u-url mention\">@<span>vtourraine</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.social/@fabi1cazenave\" class=\"u-url mention\">@<span>fabi1cazenave</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.social/@metacosm\" class=\"u-url mention\">@<span>metacosm</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mamot.fr/@PacoVelobs\" class=\"u-url mention\">@<span>PacoVelobs</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://piaille.fr/@NuclearSquid\" class=\"u-url mention\">@<span>NuclearSquid</span></a></span> Perso j'ai pas bu une goutte d'éthanol, mais je comprends la demande.</p>",
"contentMap": {
"fr": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://techhub.social/@vtourraine\" class=\"u-url mention\">@<span>vtourraine</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.social/@fabi1cazenave\" class=\"u-url mention\">@<span>fabi1cazenave</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.social/@metacosm\" class=\"u-url mention\">@<span>metacosm</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://mamot.fr/@PacoVelobs\" class=\"u-url mention\">@<span>PacoVelobs</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://piaille.fr/@NuclearSquid\" class=\"u-url mention\">@<span>NuclearSquid</span></a></span> Perso j'ai pas bu une goutte d'éthanol, mais je comprends la demande.</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://techhub.social/users/vtourraine",
"name": "@vtourraine@techhub.social"
},
{
"type": "Mention",
"href": "https://mastodon.social/users/fabi1cazenave",
"name": "@fabi1cazenave@mastodon.social"
},
{
"type": "Mention",
"href": "https://mastodon.social/users/metacosm",
"name": "@metacosm@mastodon.social"
},
{
"type": "Mention",
"href": "https://mamot.fr/users/PacoVelobs",
"name": "@PacoVelobs@mamot.fr"
},
{
"type": "Mention",
"href": "https://piaille.fr/users/NuclearSquid",
"name": "@NuclearSquid@piaille.fr"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113374394523794404/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113374394523794404/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113374394523794404/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113374394523794404/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113374394523794404/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113359036194072423/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-23T22:13:41Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://mastodon.org.uk/users/stsquad"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113359036194072423",
"type": "Note",
"summary": null,
"inReplyTo": "https://mastodon.org.uk/users/stsquad/statuses/113359006933919764",
"published": "2024-10-23T22:13:41Z",
"url": "https://fosstodon.org/@robinm/113359036194072423",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://mastodon.org.uk/users/stsquad"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113359036194072423",
"inReplyToAtomUri": "https://mastodon.org.uk/users/stsquad/statuses/113359006933919764",
"conversation": "tag:mastodon.org.uk,2024-10-23:objectId=135291485:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.org.uk/@stsquad\" class=\"u-url mention\">@<span>stsquad</span></a></span> If you have a link, I'd like to read that thread.</p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.org.uk/@stsquad\" class=\"u-url mention\">@<span>stsquad</span></a></span> If you have a link, I'd like to read that thread.</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://mastodon.org.uk/users/stsquad",
"name": "@stsquad@mastodon.org.uk"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113359036194072423/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113359036194072423/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113359036194072423/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113359036194072423/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113359036194072423/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113358801805480731/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-23T21:14:05Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://mastodon.org.uk/users/stsquad"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113358801805480731",
"type": "Note",
"summary": null,
"inReplyTo": "https://mastodon.org.uk/users/stsquad/statuses/113358683996132270",
"published": "2024-10-23T21:14:05Z",
"url": "https://fosstodon.org/@robinm/113358801805480731",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://mastodon.org.uk/users/stsquad"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113358801805480731",
"inReplyToAtomUri": "https://mastodon.org.uk/users/stsquad/statuses/113358683996132270",
"conversation": "tag:mastodon.org.uk,2024-10-23:objectId=135291485:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.org.uk/@stsquad\" class=\"u-url mention\">@<span>stsquad</span></a></span> What's happening?</p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://mastodon.org.uk/@stsquad\" class=\"u-url mention\">@<span>stsquad</span></a></span> What's happening?</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://mastodon.org.uk/users/stsquad",
"name": "@stsquad@mastodon.org.uk"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113358801805480731/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113358801805480731/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113358801805480731/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113358801805480731/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113358801805480731/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113345163761270412/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-21T11:25:45Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://mastodon.social/users/rom1alps",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://mastodon.social/users/rom1alps/statuses/113341137212717250"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113341202954314331/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-20T18:38:27Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://solarpunk.moe/users/stellarskylark",
"https://cathode.church/users/Gaelan"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113341202954314331",
"type": "Note",
"summary": null,
"inReplyTo": "https://solarpunk.moe/users/stellarskylark/statuses/113333240265931742",
"published": "2024-10-20T18:38:27Z",
"url": "https://fosstodon.org/@robinm/113341202954314331",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://fosstodon.org/users/robinm/followers",
"https://solarpunk.moe/users/stellarskylark",
"https://cathode.church/users/Gaelan"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113341202954314331",
"inReplyToAtomUri": "https://solarpunk.moe/users/stellarskylark/statuses/113333240265931742",
"conversation": "tag:fosstodon.org,2024-10-19:objectId=252614840:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://solarpunk.moe/@stellarskylark\" class=\"u-url mention\">@<span>stellarskylark</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://cathode.church/@Gaelan\" class=\"u-url mention\">@<span>Gaelan</span></a></span> I already posted it elsewhere in this thread but <a href=\"https://tom.preston-werner.com/2009/05/19/the-git-parable.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">tom.preston-werner.com/2009/05</span><span class=\"invisible\">/19/the-git-parable.html</span></a> is very good</p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://solarpunk.moe/@stellarskylark\" class=\"u-url mention\">@<span>stellarskylark</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://cathode.church/@Gaelan\" class=\"u-url mention\">@<span>Gaelan</span></a></span> I already posted it elsewhere in this thread but <a href=\"https://tom.preston-werner.com/2009/05/19/the-git-parable.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">tom.preston-werner.com/2009/05</span><span class=\"invisible\">/19/the-git-parable.html</span></a> is very good</p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://solarpunk.moe/users/stellarskylark",
"name": "@stellarskylark@solarpunk.moe"
},
{
"type": "Mention",
"href": "https://cathode.church/users/Gaelan",
"name": "@Gaelan@cathode.church"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113341202954314331/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113341202954314331/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113341202954314331/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113341202954314331/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113341202954314331/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113341188504176420/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-20T18:34:47Z",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://chaos.social/users/benthor",
"https://tams.tech/users/scott",
"https://fosstodon.org/users/drewdevault",
"https://hachyderm.io/users/lulu"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113341188504176420",
"type": "Note",
"summary": null,
"inReplyTo": "https://fosstodon.org/users/robinm/statuses/113341181696955249",
"published": "2024-10-20T18:34:47Z",
"url": "https://fosstodon.org/@robinm/113341188504176420",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://chaos.social/users/benthor",
"https://tams.tech/users/scott",
"https://fosstodon.org/users/drewdevault",
"https://hachyderm.io/users/lulu"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113341188504176420",
"inReplyToAtomUri": "https://fosstodon.org/users/robinm/statuses/113341181696955249",
"conversation": "tag:fosstodon.org,2024-10-19:objectId=252614840:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://chaos.social/@benthor\" class=\"u-url mention\">@<span>benthor</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://tams.tech/@scott\" class=\"u-url mention\">@<span>scott</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@drewdevault\" class=\"u-url mention\">@<span>drewdevault</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://hachyderm.io/@lulu\" class=\"u-url mention\">@<span>lulu</span></a></span> Btw, I also have this link which is not a business card, but a very nice story</p><p><a href=\"https://tom.preston-werner.com/2009/05/19/the-git-parable.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">tom.preston-werner.com/2009/05</span><span class=\"invisible\">/19/the-git-parable.html</span></a></p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://chaos.social/@benthor\" class=\"u-url mention\">@<span>benthor</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://tams.tech/@scott\" class=\"u-url mention\">@<span>scott</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@drewdevault\" class=\"u-url mention\">@<span>drewdevault</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://hachyderm.io/@lulu\" class=\"u-url mention\">@<span>lulu</span></a></span> Btw, I also have this link which is not a business card, but a very nice story</p><p><a href=\"https://tom.preston-werner.com/2009/05/19/the-git-parable.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">tom.preston-werner.com/2009/05</span><span class=\"invisible\">/19/the-git-parable.html</span></a></p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://chaos.social/users/benthor",
"name": "@benthor@chaos.social"
},
{
"type": "Mention",
"href": "https://tams.tech/users/scott",
"name": "@scott@tams.tech"
},
{
"type": "Mention",
"href": "https://fosstodon.org/users/drewdevault",
"name": "@drewdevault"
},
{
"type": "Mention",
"href": "https://hachyderm.io/users/lulu",
"name": "@lulu@hachyderm.io"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113341188504176420/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113341188504176420/replies?only_other_accounts=true&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113341188504176420/replies",
"items": []
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113341188504176420/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113341188504176420/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113341181696955249/activity",
"type": "Create",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-20T18:33:03Z",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://chaos.social/users/benthor",
"https://tams.tech/users/scott",
"https://fosstodon.org/users/drewdevault",
"https://hachyderm.io/users/lulu"
],
"object": {
"id": "https://fosstodon.org/users/robinm/statuses/113341181696955249",
"type": "Note",
"summary": null,
"inReplyTo": "https://chaos.social/users/benthor/statuses/113333366860573817",
"published": "2024-10-20T18:33:03Z",
"url": "https://fosstodon.org/@robinm/113341181696955249",
"attributedTo": "https://fosstodon.org/users/robinm",
"to": [
"https://fosstodon.org/users/robinm/followers"
],
"cc": [
"https://www.w3.org/ns/activitystreams#Public",
"https://chaos.social/users/benthor",
"https://tams.tech/users/scott",
"https://fosstodon.org/users/drewdevault",
"https://hachyderm.io/users/lulu"
],
"sensitive": false,
"atomUri": "https://fosstodon.org/users/robinm/statuses/113341181696955249",
"inReplyToAtomUri": "https://chaos.social/users/benthor/statuses/113333366860573817",
"conversation": "tag:fosstodon.org,2024-10-19:objectId=252614840:objectType=Conversation",
"content": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://chaos.social/@benthor\" class=\"u-url mention\">@<span>benthor</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://tams.tech/@scott\" class=\"u-url mention\">@<span>scott</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@drewdevault\" class=\"u-url mention\">@<span>drewdevault</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://hachyderm.io/@lulu\" class=\"u-url mention\">@<span>lulu</span></a></span> That one?</p><p><a href=\"https://social.jvns.ca/@b0rk/113334649692320208\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">social.jvns.ca/@b0rk/113334649</span><span class=\"invisible\">692320208</span></a></p>",
"contentMap": {
"en": "<p><span class=\"h-card\" translate=\"no\"><a href=\"https://chaos.social/@benthor\" class=\"u-url mention\">@<span>benthor</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://tams.tech/@scott\" class=\"u-url mention\">@<span>scott</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://fosstodon.org/@drewdevault\" class=\"u-url mention\">@<span>drewdevault</span></a></span> <span class=\"h-card\" translate=\"no\"><a href=\"https://hachyderm.io/@lulu\" class=\"u-url mention\">@<span>lulu</span></a></span> That one?</p><p><a href=\"https://social.jvns.ca/@b0rk/113334649692320208\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" translate=\"no\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">social.jvns.ca/@b0rk/113334649</span><span class=\"invisible\">692320208</span></a></p>"
},
"attachment": [],
"tag": [
{
"type": "Mention",
"href": "https://chaos.social/users/benthor",
"name": "@benthor@chaos.social"
},
{
"type": "Mention",
"href": "https://tams.tech/users/scott",
"name": "@scott@tams.tech"
},
{
"type": "Mention",
"href": "https://fosstodon.org/users/drewdevault",
"name": "@drewdevault"
},
{
"type": "Mention",
"href": "https://hachyderm.io/users/lulu",
"name": "@lulu@hachyderm.io"
}
],
"replies": {
"id": "https://fosstodon.org/users/robinm/statuses/113341181696955249/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://fosstodon.org/users/robinm/statuses/113341181696955249/replies?min_id=113341188504176420&page=true",
"partOf": "https://fosstodon.org/users/robinm/statuses/113341181696955249/replies",
"items": [
"https://fosstodon.org/users/robinm/statuses/113341188504176420"
]
}
},
"likes": {
"id": "https://fosstodon.org/users/robinm/statuses/113341181696955249/likes",
"type": "Collection",
"totalItems": 0
},
"shares": {
"id": "https://fosstodon.org/users/robinm/statuses/113341181696955249/shares",
"type": "Collection",
"totalItems": 0
}
}
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113340574532900263/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-20T15:58:39Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://piaille.fr/users/Kalytis",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://piaille.fr/users/Kalytis/statuses/113330233924157752"
},
{
"id": "https://fosstodon.org/users/robinm/statuses/113336579433669143/activity",
"type": "Announce",
"actor": "https://fosstodon.org/users/robinm",
"published": "2024-10-19T23:02:38Z",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://mastodon.social/users/Vibrance",
"https://fosstodon.org/users/robinm/followers"
],
"object": "https://mastodon.social/users/Vibrance/statuses/113228155581985599"
}
]
}