15Redstones

joined 1 year ago
MODERATOR OF
[–] 15Redstones@feddit.de 0 points 1 year ago

seems like all your image links are broken

[–] 15Redstones@feddit.de 0 points 1 year ago* (last edited 1 year ago)

another idea: add links like /c/aoblightnovel@bookwormstory.social to the sidebar to switch between communities when logged in from another instance

[–] 15Redstones@feddit.de 0 points 1 year ago

Text is cached but images aren't rehosted.

[–] 15Redstones@feddit.de 0 points 1 year ago

Trotz Namen sieht https://sh.itjust.works/home/data_type/Post/listing_type/Local/sort/Active/page/1 nicht wie eine reine Shitpost-Instanz aus. Camping, Python, Babylon 5. Und NCD ist halt dort...

[–] 15Redstones@feddit.de 0 points 1 year ago

Also when sorting by active, posts jump around whenever you go to the next page, so you miss some posts and see others twice

[–] 15Redstones@feddit.de 0 points 1 year ago (2 children)

The reddit has Anime/LN/Prepub/WN flairs for spoiler management, I think for lemmy having separate communities for each level would be ideal. That way people can subscribe to those they want and block WN and/or prepub content entirely.

[–] 15Redstones@feddit.de 0 points 1 year ago

Once Hildebrand finds out about the adoption and engagement, he might plot to make book addicted Dunkelfelger demand that Rozemyne should be given the throne as the true Zent and she should marry someone who loves her instead of becoming a third wife in a purely political marriage. There's two years between adoption/book acquisition and the marriage.

Obviously he'd be pretty heartbroken when the plot works, she marries Ferdinand and arranges for Hildebrand to be sent to Ehrenfest as first husband of Aub Charlotte.

[–] 15Redstones@feddit.de 0 points 1 year ago

But Rozemyne is dead serious about the library being non-negotiable.

[–] 15Redstones@feddit.de 0 points 1 year ago

They already know that using mana on the stage makes the circle show up. Everyone saw that during the wedding and assumed it was for Sigiswald. This time royals won't be present, so if it shows up again, everyone will know it lights for Rozemyne (and probably wasn't for Sigiswald during the wedding).

[–] 15Redstones@feddit.de 0 points 1 year ago (1 children)

Really big map, mostly empty

[–] 15Redstones@feddit.de 0 points 1 year ago* (last edited 1 year ago)

Because SpaceX satellites are coated in special reflective materials to reduce brightness. That requires the satellite to be oriented the right way to reflect the light from the sun away from the planet, so it only reduces brightness of the satellites in the operational orbit. Satellites immediately after deployment or in space debris dodging mode are far more visible.

[–] 15Redstones@feddit.de 0 points 1 year ago

We need more housing.

0
Rule (i.redd.it)
submitted 1 year ago* (last edited 1 year ago) by 15Redstones@feddit.de to c/196@lemmy.blahaj.zone
 
 

cross-posted from: https://feddit.de/post/808717

I made a little thing to more easily move to another instance:

A way to quickly grab a list of your subscribed communities.

Go to your list of subscribed communities, /communities/listing_type/Subscribed/page/1 and create a bookmark with the following code as link:

code

javascript:(function() {
    const currentHostname = window.location.hostname;
    const table = document.getElementById('community_table');
    const anchorTags = table.getElementsByTagName('a');
    const communityUrls = [];

    for (let i = 0; i < anchorTags.length; i++) {
      const title = anchorTags[i].title.substring(1);
      const parts = title.split('@');
      const community = parts[0].trim();
      const domain = parts[1] ? parts[1].trim() : currentHostname;
      const communityUrl = `https://${domain}/c/${community}`;
      communityUrls.push(communityUrl);
    }

    const urlsText = communityUrls.join('\n');

    navigator.clipboard.writeText(urlsText)
      .then(() => {
        alert('Community URLs copied to clipboard!');
      })
      .catch((error) => {
        alert('Failed to copy Community URLs to clipboard:', error);
      });
})();
Clicking this bookmark will automatically copy a list of all your subscribed communities and format the links so that you can pop them in the search bar of another instance to subscribe to them from another account. It can only scrape what's on screen, so if your subscribed communities list is several pages long just click the bookmark for each page.
0
submitted 1 year ago* (last edited 1 year ago) by 15Redstones@feddit.de to c/main@sh.itjust.works
 

I made a little thing to more easily move to another instance:

A way to quickly grab a list of your subscribed communities.

Go to your list of subscribed communities, /communities/listing_type/Subscribed/page/1 and create a bookmark with the following code as link:

code

javascript:(function() {
    const currentHostname = window.location.hostname;
    const table = document.getElementById('community_table');
    const anchorTags = table.getElementsByTagName('a');
    const communityUrls = [];

    for (let i = 0; i < anchorTags.length; i++) {
      const title = anchorTags[i].title.substring(1);
      const parts = title.split('@');
      const community = parts[0].trim();
      const domain = parts[1] ? parts[1].trim() : currentHostname;
      const communityUrl = `https://${domain}/c/${community}`;
      communityUrls.push(communityUrl);
    }

    const urlsText = communityUrls.join('\n');

    navigator.clipboard.writeText(urlsText)
      .then(() => {
        alert('Community URLs copied to clipboard!');
      })
      .catch((error) => {
        alert('Failed to copy Community URLs to clipboard:', error);
      });
})();
Clicking this bookmark will automatically copy a list of all your subscribed communities and format the links so that you can pop them in the search bar of another instance to subscribe to them from another account. It can only scrape what's on screen, so if your subscribed communities list is several pages long just click the bookmark for each page.
 

view more: ‹ prev next ›