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.


if you can see this, it's up  

founded 3 years ago
MODERATORS
 

Sorry if this is a dumb question but some communities show up here and some 404. How do I get a community to show up in the list that hasn't synced yet. Example [email protected]

I checked the faq and don't see this answer there.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 2 years ago

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; })();