Interlisp / medley

The main repo for the Medley Interlisp project. Wiki, Issues are here. Other repositories include maiko (the VM implementation) and Interlisp.github.io (web site sources)
https://Interlisp.org
MIT License
378 stars 19 forks source link

Remove X link and logo, maybe replace with other social media #1887

Open hjellinek opened 5 days ago

hjellinek commented 5 days ago

The Interlisp.org website footer links to what used to be called Twitter. I'd favor removing that from the site because they're successful enough without our help. I suggest we link instead to our Mastodon and Bluesky accounts - and if we don't have those, establish them.

@stumbo is the website guy, I think. @pamoroso would know about the socials.

pamoroso commented 5 days ago

I agree to leave X for an additional reason, which was a major motivation for me to move to Mastodon prior to the earliest 2022 Twitter migrations: there's essentially no organic reach on X even for users with many followers such as 5-10K or more. And the algorithms penalize posts with links.

If we set up a Mastodon account, unless we self host which is a bit involved, it would make sense to join an instance focusing on retrocomputing such as these which are the best known:

BitbangOldbytes

Starting with a Mastodon account may not initially require a Bluesky one thanks to a Mastodon-Bluesky bridge.

I'd be happy to maintain a Mastodon account.

tfeb commented 5 days ago

For what it's worth (so, as someone who has contributed 0 to the project!) I strongly endorse this. Not being on X has to be good.

pamoroso commented 3 days ago

Here is the updated list of potential Mastodon instances to join. Each entry includes a link, the topic that's the focus of the instance, the number of active users and admins, and whether the instance supports full text search (I reached out to the Bitbang admin and I'll report back):

All of the above instances have been online for at least a few years and are well regarded.

As for other online social venues @masinter recommends monitoring Lisp & Scheme weekly (also on Mastodon).

hjellinek commented 2 days ago

Thanks, @pamoroso. Given Fosstodon's technical and community resources and strong association with the FOSS movement, it sounds like the appropriate venue (ahem) for our project.

I gather that entrée to Fosstodon is by invitation, and further that we have project members who can issue just such an invitation. What else is required to get set up there?

I volunteer to submit the PR to replace our Twitter link with our Mastodon link.

pamoroso commented 1 day ago

Here is what to do to join Fosstodon. I'll use my Mastodon account @amoroso@fosstodon.org and profile as an example.

Pick a username

Mastodon handles have the format @username@instance.example.com. I recommend the interlisp username as, although other variations such as medleyinterlisp or medleyproject are possible, they are less easy to remember or deduce. In this case the full handle is @interlisp@fosstodon.org.

Sign up for Fosstodon

@masinter and I can provide a Fosstodon invite, we only need an email address to send the invite to.

I recommend to sign up to Fosstodon using an interlisp.org address like info@interlisp.org or board@interlisp.org. From such email address follow the instructions in the invite, making sure to enter that address and create the interlisp username.

Verify the account

Mastodon supports account verification which shows checkmarks next to the links to websites the user owns. See for example the checkmarks of the links in my profile

In practice, for us this involves adding an HTML snippet like this to the home page of interlisp.org:

<a rel="me" href="https://fosstodon.org/@interlisp">Mastodon</a>

Once the code is in place we need to enter https://interlisp.org in one of the extra fields of the Fosstodon profile. As an example, here is the verification section:

mastodon-verification

and the extra fields of the profile of my Fosstodon account:

mastodon-profile

Share the credentials

At this point I need the Fosstodon credentials (an email address like info@interlisp.org and a password) to fill in the profile and report back for feedback.

hjellinek commented 1 day ago

Perfect, thanks. I will reply by private email.

hjellinek commented 1 day ago

@stumbo, what file should I edit to add the rel link @pamoroso mentioned above? It will look like this:

<a rel="me" href="https://fosstodon.org/@interlisp">Mastodon</a>

pamoroso commented 1 day ago

The code <a rel="me" href="https://fosstodon.org/@interlisp">Mastodon</a> goes in the body of the page and creates a link with anchor text Mastodon. An alternative that doesn't insert visible text in the page is to add to the header this other snippet:

<link rel="me" href="https://fosstodon.org/@interlisp" />
hjellinek commented 1 day ago

I'd prefer it in the <head>. We'll have a visible link in the footer.

hjellinek commented 1 day ago

@stumbo I was asking what file I should put the

<link rel="me" href="https://fosstodon.org/@interlisp" />

incantation in. It needs to go in the <head> of the home page.