freamon

joined 1 year ago
MODERATOR OF
[–] freamon 1 points 9 months ago (1 children)

freamon regrets his comment, and deletes it.

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/delete/c08be088-fd16-47fe-a286-3e0c24abc15b",
  "actor": "https://local.com/u/freamon",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "object": "https://local.com/comment/1",
  "type": "Delete",
  "audience": "https://remote.com/c/interesting",
  "cc": [
    "https://remote.com/c/interesting"
  ]
}
[–] freamon 1 points 9 months ago (2 children)

freamon replies to his own post, with an inline link to the same image, and an emoji

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/create/c394a258-eac5-4555-8b98-823002cbb88c",
  "actor": "https://local.com/u/freamon",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "object": {
    "type": "Note",
    "id": "https://local.com/comment/1",
    "attributedTo": "https://local.com/u/freamon",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public"
    ],
    "cc": [
      "https://remote.com/c/interesting",
      "https://local.com/u/freamon"
    ],
    "content": "<p>Comment text<br />\n<img src=\"https://i.imgur.com/T7Z3vUU.jpeg\" alt=\"\" /></p>\n<p>😜</p>\n",
    "inReplyTo": "https://local.com/post/3",
    "mediaType": "text/html",
    "source": {
      "content": "Comment text              \n![](https://i.imgur.com/T7Z3vUU.jpeg)\n\n 😜 ",
      "mediaType": "text/markdown"
    },
    "published": "2024-02-13T21:48:18.776300Z",
    "tag": [
      {
        "href": "https://local.com/u/freamon",
        "name": "@[email protected]",
        "type": "Mention"
      }
    ],
    "distinguished": false,
    "audience": "https://remote.com/c/interesting"
  },
  "cc": [
    "https://remote.com/c/interesting",
    "https://local.com/u/freamon"
  ],
  "tag": [
    {
      "href": "https://local.com/u/freamon",
      "name": "@[email protected]",
      "type": "Mention"
    }
  ],
  "type": "Create",
  "audience": "https://remote.com/c/interesting"
}

Note 1: lemmy uses 'Page' for a post, and 'Note' for a comment, whereas mastodon uses 'Note' for both, with 'inReplyTo' distinguishing between the two.
Note 2: this is sent to the main community at remote.com, and also to the post's author (it would appear in his inbox if they weren't the same person)

[–] freamon 1 points 9 months ago

freamon creates a post in the interesting community. He adds a title, a body, links to an image, and tags it as in English.

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/create/37f46c10-9fc2-4228-b8ea-3803eb911485",
  "actor": "https://local.com/u/freamon",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "object": {
    "type": "Page",
    "id": "https://local.com/post/3",
    "attributedTo": "https://local.com/u/freamon",
    "to": [
      "https://remote.com/c/interesting",
      "https://www.w3.org/ns/activitystreams#Public"
    ],
    "name": "Title Text",
    "cc": [],
    "content": "<p>Body Text</p>\n",
    "mediaType": "text/html",
    "source": {
      "content": "Body Text",
      "mediaType": "text/markdown"
    },
    "attachment": [
      {
        "href": "https://i.imgur.com/T7Z3vUU.jpeg",
        "type": "Link"
      }
    ],
    "commentsEnabled": true,
    "sensitive": false,
    "published": "2024-02-13T21:46:05.705099Z",
    "language": {
      "identifier": "en",
      "name": "English"
    },
    "audience": "https://remote.com/c/interesting"
  },
  "cc": [
    "https://remote.com/c/interesting"
  ],
  "type": "Create",
  "audience": "https://remote.com/c/interesting"
}
[–] freamon 1 points 9 months ago

freamon changes his mind about post 2, and undoes his downvote

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/undo/e677b1ba-caaf-4a2f-9472-681705f337a3",
  "actor": "https://local.com/u/freamon",
  "object": {
    "actor": "https://local.com/u/freamon",
    "object": "https://remote.com/post/2",
    "type": "Like",
    "id": "https://local.com/activities/like/70edfad8-dcbb-42cd-8fd2-f674844b8801",
    "audience": "https://remote.com/c/interesting"
  },
  "type": "Undo",
  "audience": "https://remote.com/c/interesting"
}

Note: due the expection of unique 'id' fields, the encapsulated object isn't the same, so this is probably best read as 'undo vote'

[–] freamon 1 points 9 months ago (1 children)

The interesting community came with 2 posts. freamon upvotes post 1, and downvotes post 2

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/like/16e6a46e-b80b-4d13-8258-2f724c53ed1c",
  "actor": "https://local.com/u/freamon",
  "object": "https://remote.com/post/1",
  "type": "Like",
  "audience": "https://remote.com/c/interesting"
}
{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "id": "https://local.com/activities/dislike/576f119f-5aa5-4f5e-ba48-a79b26f0fae3",
  "actor": "https://local.com/u/freamon",
  "object": "https://remote.com/post/2",
  "type": "Dislike",
  "audience": "https://remote.com/c/interesting"
}
[–] freamon 1 points 9 months ago

freamon changes his mind. He doesn't want to subscribe anymore

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "actor": "https://local.com/u/freamon",
  "to": [
    "https://remote.com/c/interesting"
  ],
  "object": {
    "actor": "https://local.com/u/freamon",
    "to": [
      "https://remote.com/c/interesting"
    ],
    "object": "https://remote.com/c/interesting",
    "type": "Follow",
    "id": "https://local.com/activities/follow/c934a27e-0dad-4641-85f5-a83e04d672a4"
  },
  "type": "Undo",
  "id": "https://local.com/activities/undo/a9047cfc-ed0e-49c2-86da-9a0b3dbdc463"
}

Note 1: lemmy expects these 'id' fields to be unique, so the encapulated 'Follow' isn't the same as the one that was sent.
Note 2: lemmy also sends a Undo/Follow if you block a community

[–] freamon 1 points 9 months ago

The interesting community accepts freamon's subscription request
The subscription status changes to 'joined'

{
  "actor": "https://remote.com/c/interesting",
  "to": "https://local.com/u/freamon",
  "object": {
    "actor": "https://local.com/u/freamon",
    "to": null,
    "object": "https://remote.com/c/interesting",
    "type": "Follow",
    "id": "https://local.com/activities/follow/c66515bd-6f81-44e0-8af9-c4c4ae307051"
  },
  "type": "Accept",
  "id": "https://remote.com/activities/accept/4ca771e6-0213-478a-83ba-d957984b98c5"
}
[–] freamon 1 points 9 months ago (2 children)

freamon subscribes to the interesting community
The subscription status changes to 'pending'

{
  "@context": [
    "https://join-lemmy.org/context.json",
    "https://www.w3.org/ns/activitystreams"
  ],
  "actor": "https://local.com/u/freamon",
  "to": [
    "https://remote.com/c/interesting"
  ],
  "object": "https://remote.com/c/interesting",
  "type": "Follow",
  "id": "https://local.com/activities/follow/5cc358b8-9eae-49ef-8b5c-05d98504bda1"
}
[–] freamon 12 points 9 months ago (2 children)

I realise that Lucas has said that the ewoks in Return of the Jedi were representations of the North Vietnamese. If you look at Rogue One, though, Saw's men are called terrorists, they use IEDs, it's a desert environment ... so the Rebels are, um, ISIS? Who do we want to win again?

Star Wars has always been too flakey to say Rebels are definitely this, or the the Empire are definitely that. It's popularity, and it's use by people on any part of the political spectrum as a a recruitment tool, depends on the fact that the US is magically both.

[–] freamon 20 points 9 months ago (4 children)

Star Wars is often "SchrΓΆdinger's Political Allegory" - the Empire is British/Roman/German but also American (if Endor = Vietnam, and Jedha = the Middle East), but the Rebels are somehow American too. Whatever side you're on, you can use Star Wars to cast yourself as the good guy, and the other side as the baddies.

[–] freamon 21 points 9 months ago (6 children)

... which many countries don't have, because 'First Past the Post' systems naturally lead to only 2 viable choices.

They'll also be an election coming up soon in the UK - I can choose between 'Sensible Conservative' or the currently ruling 'Lunatic Conservative', but anything else would be a wasted vote.

[–] freamon 9 points 9 months ago

Hmm, you've just bridged some content from BlueSky to the Fediverse ... Haven't you heard? We're supposed to be burning those bridges.

/S

view more: β€Ή prev next β€Ί