this post was submitted on 22 Jun 2023
4 points (100.0% liked)
Beehaw Support
2797 readers
1 users here now
Support and meta community for Beehaw. Ask your questions about the community, technical issues, and other such things here.
A brief FAQ for lurkers and new users can be found here.
Our September 2024 financial update is here.
For a refresher on our philosophy, see also What is Beehaw?, The spirit of the rules, and Beehaw is a Community
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I found this bookmarklet somewhere else, and it's super handy. You simply click the bookmark when you are on the lemmy community page, and it'll send you to a beehaw page where you can subscribe to it directly:
javascript:(function() { const home = 'beehaw.org'; /*replace this with your local instance's host name */ const url = window.location.href; let community = url.split('/c/')[1]; if( !community.includes('@') ) { community += '@' + url.split('/')[2]; } if( community.endsWith( '@' + home ) ) { community = community.substring(0, community.length - 1 - home.length); } window.location.href = 'https://' + home + '/c/' + community; })();