35
submitted 1 year ago* (last edited 1 year ago) by ewe@lemmy.world to c/lemmy@lemmy.ml

The issue: You find a link to a neat lemmy community on some random instance. In order to subscribe, you have go to your instance, search for the community, find it, open it, subscribe...blah!

The fix: Use a simple browser bookmark to go to your home instance and open the federated community in one click.

This works through modifying the URL of the page your on and puts the host name (e.g. lemmy.ml) after an "@" symbol after the community and then changing the host name to your own, hard-coded one.

How to steps:

  1. Create a bookmark in your browser and then "Edit" it.

  2. Change the URL to this text (modify the "lemmy.world" bit with whatever your home instance is):

    For lemmy.world users: javascript:(function(){location.href="https://lemmy.world/c/"+location.href.match(/(?:.*)\/c\/(.*(?=\/)|.*$)/i)[1]+"@"+location.host.toString();})();

    For lemmy.ml users: javascript:(function(){location.href="https://lemmy.ml/c/"+location.href.match(/(?:.*)\/c\/(.*(?=\/)|.*$)/i)[1]+"@"+location.host.toString();})();

  3. Change the name of the bookmark to whatever you want. Mine is named "lemmy.world".

  1. You're all set!

Now, from any federated community main feed page, click on the bookmark and you'll magically be taken to the same community on your local instance. Magic!


Disclaimers: The community must be federated with your instance. You can only do this from a URL that has the community in url (e.g. not from a post or anything).

top 10 comments
sorted by: hot top controversial new old
[-] binwiederhier@discuss.ntfy.sh 12 points 1 year ago

This is neat, but it should really be part of Lemmy to be able to link between instances in a way that rewrites the link to your own instance, and makes subscribing easier.

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

Lemmy v0.18 has this, however not everyone's upgrading yet. When it comes in though you'll be able to just type /c/community@instance, !community@instance or /u/user@instance and it will automatically make a link.

Old lemmy can do it with /c/ or /u/ links, eg [Link text](/c/community@instance) or [Link text](/u/user@instance)

[-] binwiederhier@discuss.ntfy.sh 1 points 1 year ago

Cool thanks

[-] swab148@lemmy.world 3 points 1 year ago

True, then it could be implemented via the app, which would make adoption by new users much more palatable.

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

This sounds like a convoluted way.. New Lemmy 0.18 does this automagically with /c/, ! and /u/.

However, not all instances are updating to 0.18, because it removes captcha.

However however, old instances can still work if you make a link like this: [Link text](/c/community@instance) or [Link text](/u/user@instance)

Like this: TWeaK or this: Lemmy

Frankly, I'd say making a link in the comments with /c/ or /u/ is much easier than creating a bookmark with a chunk of javascript. Plus, it creates a link others can use for themselves.

[-] miridius@lemmy.world 0 points 1 year ago* (last edited 1 year ago)

That only helps if you're clicking the link from Lemmy itself. If you share or find a link some other way then it will be the full URL to a random instance still right?

[-] ElGringoLoco@lemmy.donmcgin.com 3 points 1 year ago

Hey, thank you for this, I had been wanting something along these lines. I have a personal instance, and this will let me import more communities for myself. I just tried it and it works a treat. Takes it a couple of seconds if the community is not yet in my "All" list, but it totally finds it and then I can subscribe or just let it be. Thanks!

[-] ctr1@fl0w.cc 3 points 1 year ago

Thanks! This works pretty well for now, until a more integrated solution comes along. I made a slight modification, since the original script only works when you're at the community level. This version redirects community URLs as before, but also redirects any non-matching URLs to the search form of your home instance. It seems to work pretty well for posts. Comments and user profiles have some issues- searching comments works as long as the user is commenting on their own instance, and searching profiles works as long as the user is registered with that instance.

javascript:(() => { const inst = "lemmy.world"; const m = location.href.match(/(?:.*)\/c\/(.*(?=\/)|.*$)/i); if (m) { location.href = `https://${inst}/c/` + m[1] + "@" + location.host.toString(); } else if (location.host !== inst) { const q = new URLSearchParams(); q.append('q', location.href); location.href = `https://${inst}/search?${q.toString()}`; }})()
[-] ewe@lemmy.world 1 points 1 year ago

Exactly, hopefully these things are just stopgaps until better link handling is fully implemented.

[-] mxh@lemmy.mxh.nu 1 points 1 year ago

Nice! Been thinking of a way it could be built into Lemmy itself, but I haven't come up with anything. Most accessible way I can think of is a browser extension that would do the same thing as your bookmarklet.

load more comments
view more: next ›
this post was submitted on 24 Jun 2023
35 points (100.0% liked)

Lemmy

12443 readers
43 users here now

Everything about Lemmy; bugs, gripes, praises, and advocacy.

For discussion about the lemmy.ml instance, go to !meta@lemmy.ml.

founded 4 years ago
MODERATORS