We have gotten a lot of new signups over the past few days, and we're all very excited to have you joining us! You'll find that people are more than happy to help you get started and learn how to use the site.
If you feel up for it, you can introduce yourself or ask questions below!
We have put together some resources to help new users get started:
These guides were published very recently, and we will be updating them over time. If you find that something is confusing or missing, please let us know and we can improve them further.
For an organized list of Canadian communities (provinces/territories, Cities / Local , Sports, Schools, BuyCanadian, CanadaPolitics etc.), see this post on [email protected]. You can also ask about communities in places like [email protected].
We also encourage you to check out [email protected], so that others can help you / learn from your questions.
Another question: My email notifications take me to lemm.ca... is there any way to be directed to https://alex.lemmy.ca/lemmy.ca? Something in my settings maybe?
Thanks, but I don't want to put you through all that trouble. I'm guessing you're busy enough already. I'm also getting used to lemmy.ca... starting to feel more at home :)
I've played with bookmarklets before, so it wasn't too much trouble. I don't normally use Alexandrite, but from my quick exploration it seems that Alexandrite URLs are very similar to the default ones, where it just appends alex.lemmy.ca/ to the start. If that is the case, the following steps should work. The steps are for Firefox, but it should be similar on other browsers:
Right-click on the bookmark bar and click Add Bookmark
Put anything you want in the name
In the URL field, paste in this block of code:
javascript:(function(){
let currentURL = window.location.href;
if (currentURL.startsWith('https://lemmy.ca/')) {
window.location.href = currentURL.replace('https://lemmy.ca/', 'https://alex.lemmy.ca/lemmy.ca/');
}
})();
When you are on any lemmy.ca page, clicking on the bookmark should take you to the corresponding alex.lemmy.ca page. You can also make one to go in the opposite direction, with this block of code:
javascript:(function(){
let currentURL = window.location.href;
if (currentURL.startsWith('https://alex.lemmy.ca/lemmy.ca/')) {
window.location.href = currentURL.replace('https://alex.lemmy.ca/lemmy.ca/', 'https://lemmy.ca/');
} else if (currentURL === 'https://alex.lemmy.ca/lemmy.ca') {
window.location.href = 'https://lemmy.ca/';
}
})();