[-] Gamera8ID@lemm.ee 1 points 1 year ago* (last edited 1 year ago)

Yes, the VM is Ubuntu 22.04.

Edit: Replied out of context. Fixed.

[-] Gamera8ID@lemm.ee 2 points 1 year ago

Good tip. Thanks!

[-] Gamera8ID@lemm.ee 1 points 1 year ago

readarr

I thought it was ebooks-only. I didn't realize was for audiobooks also. Thanks!

[-] Gamera8ID@lemm.ee 1 points 1 year ago* (last edited 1 year ago)
[-] Gamera8ID@lemm.ee 3 points 1 year ago

Something Overseer-like for requesting audiobooks for Plex.

[-] Gamera8ID@lemm.ee 3 points 1 year ago

ChatGPT and I came up with this bookmarklet which I'm using until this is resolved.

You set your home instance, then just click it when on a post on another instance. It grabs the post title and the author, redirects to a post search of the title on your home instance, and copies the author to your clipboard to Ctrl-F if there are too many results.

You have to be pretty quick on the draw to be able to enable clipboard access when using it on a new instance for the first time. So it's like a game, too.

javascript:(function(){
  let instance = "lemm.ee";
  const personListing = document.querySelector('.person-listing');
  const author = personListing.getAttribute('title');
  navigator.clipboard.writeText(author);
  alert("Post author copied to clipboard.\n\nCtrl-F + Crtl-V when redirected, if necessary.");
  var title = document.title;
  var lastDashIndex = title.lastIndexOf(" - ");
  if (lastDashIndex !== -1) {
    title = title.substr(0, lastDashIndex);
  }
  var encodedTitle = encodeURIComponent(title);
  let search = "https://" + instance + "/search?q=" + encodedTitle + "&type=Posts";
  window.location.href = search
})();
[-] Gamera8ID@lemm.ee 1 points 1 year ago

You might also want to check out this Python script which syncs profiles, communities, and blocks between multiple Lemmy accounts.

[-] Gamera8ID@lemm.ee 1 points 1 year ago

Tried this with a throwaway, but it's broken.

Subscription location has changed.

When corrected, it asks to visit https://cors-anywhere.herokuapp.com/corsdemo to request access. Despite doing so, it never gets past that point.

When/if you fix it, you might give some context about how you're handling user credentials.

view more: ‹ prev next ›

Gamera8ID

joined 1 year ago