aka [email protected], [email protected], and any username from lemmon.website

This account is currently parked, and I’m using https://piefed.social/u/andrew_s

  • 46 Posts
  • 300 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle
  • freamon@endlesstalk.orgtoLemmy@lemmy.mlHow to download account data?
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    4 months ago

    No settings page (as far as I’m aware), but you can use the API to get everything (posts, comments, etc):

    step 1: get login token -

    curl --request POST \
         --url https://lemmy.ml/api/v3/user/login \
         --header 'accept: application/json' \
         --header 'content-type: application/json' \
         --data '
    {
      "username_or_email": "2br02b",
      "password": "YOUR-PASSWORD"
    }
    '
    

    step 2: use login token (big long string starting with ‘ey’) to get data -

    curl --request GET \
         --url 'https://lemmy.ml/api/v3/user?username=2br02b&page=1' \
         --header 'accept: application/json' \
         --header 'authorization: Bearer YOUR-JWT'
    

    Increment page number until you have everything. source: https://lemmy.readme.io/reference/get_user











  • I changed the link to nbcnews rather than businessinsider - I tested it but the paywall on there is sneaky.

    The full memo is:


    Dear Vice Team,

    As we navigate the ever-evolving business landscape, we need to adapt and best align our strategies to be more competitive in the long term. After careful consideration and discussion with the board, we have decided to make some fundamental changes to our strategic vision at Vice.

    We create and produce outstanding original content true to the Vice brand. However, it is no longer cost-effective for us to distribute our digital content the way we have done previously.

    Moving forward, we will look to partner with established media companies to distribute our digital content, including news, on their global platforms, as we fully transition to a studio model. As part of this shift, we will no longer publish content on vice.com, instead putting more emphasis on our social channels as we accelerate our discussions with partners to take our content to where it will be viewed most broadly.

    Separately, Refinery 29 will continue to operate as a standalone diversified digital publishing business, creating engaging, social first content. As you know, we are in advanced discussions to sell this business, and we are continuing with that process. We expect to announce more on that in the coming weeks.

    With this strategic shift comes the need to realign our resources and streamline our overall operations at Vice. Regrettably, this means that we will be reducing our workforce, eliminating several hundred positions. This decision was not made lightly, and I understand the significant impact it will have on those affected. Employees who will be affected will notified about next steps early next week, consistent with local laws and practices.

    I know that saying goodbye to our valued colleagues is difficult and feels overwhelming, but this is the best path forward for Vice as we position the company for long-term creative and financial success. Our financial partners are supportive and have agreed to invest in this operating model going forward. We will emerge stronger and more resilient as we embark on this new phase of our journey.

    Thank you for your continued dedication to Vice and support during this time of transition.

    Together, I am confident that we will overcome any challenges and achieve our shared goals.

    Bruce




  • Regarding the ‘Unresolved questions’ part, the ActivityPub activity for Reports is:

    {
      "actor": "http://ds9.lemmy.ml/u/lemmy_alpha",
      "to": ["http://enterprise.lemmy.ml/c/main"],
      "audience": "http://enterprise.lemmy.ml/u/main",
      "object": "http://enterprise.lemmy.ml/post/7",
      "summary": "report this post",
      "type": "Flag",
      "id": "http://ds9.lemmy.ml/activities/flag/98b0933f-5e45-4a95-a15f-e0dc86361ba4"
    }
    

    From this page. I imagine it’s up to lemmy where this actually gets sent (in the sense that if a community has 1 moderator, it goes to 1 inbox, but if it has 2 moderators, it goes to 2 inboxes).










  • Mmmm. It’s the instance that people are on on that’s doing (or not doing) much of the work there. If you comment on a post, the instance will send 1 copy to me (who’s responsible for federating it out to other Lemmy instances) and 1 copy to Mastodon for the post’s author.

    If you reply to a Lemmy comment, it doesn’t send it to Mastodon because it’s not for the author (in much the same way that you don’t get replies to replies in your inbox if you’re the OP of a Lemmy post). For local posts, both Mastodon and Lemmy show the local comment tree, but neither can show every Fediverse interaction because they never hear about them.

    Likewise, if you reply to a Mastodon comment, your instance will send it to the comment author, but not the post author, so won’t appear anywhere under their post.

    As for Mastodon comments on Lemmy … it depends. I follow some accounts, so when I post them to Lemmy, top-level comments come through automatically (again, though, I never hear about replies to replies). Other content is just stuff I’ve seen and grabbed. I often post the existing replies, but not if they’ve turned Authorized Fetch on, and I don’t typically go back and check for more later.