Add Mastodon replies to your blog

This page summarizes the projects mentioned and recommended in the original post on dev.to

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • sanitize-html

    Clean up user-submitted HTML, preserving whitelisted elements and whitelisted attributes on a per-element basis. Built on htmlparser2 for speed and tolerance

    One thing to watch out for is that the content of each reply is HTML. To be safe (paranoid), I'm running the HTML through sanitize-html to make sure nobody can inject sketchy HTML into my site.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • webmention.io

    Easily enable webmentions on any web site

    async function getMentions(url) { let mentions = []; let page = 0; let perPage = 100; while (true) { const results = await fetch( `https://webmention.io/api/mentions.jf2?target=${url}&per-page=${perPage}&page=${page}` ).then((r) => r.json()); mentions = mentions.concat(results.children); if (results.children.length < perPage) { break; } page++; } return mentions.sort((a, b) => ((a.published || a['wm-received']) < (b.published || b['wm-received']) ? -1 : 1)); }

  • bridgy-fed

    🌉 A bridge between decentralized social network protocols

    Go to fed.brid.gy and, if you're like me, you'll want to click on "Cross-post to a Mastodon account", so that it'll integrate with your existing Mastodon account.

  • advent-of-code-jq

    Solving Advent of Code with jq

    For any posts that don't have any mentions, I added a different button, "Share this on Mastodon". When you click it, it runs this code, which prompts you for your Mastodon server (inspired by Advent of Code's share functionality):

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Keycloak took 10 months to fix a 2FA bypass

    5 projects | news.ycombinator.com | 14 Nov 2024
  • Go-Safeweb

    4 projects | news.ycombinator.com | 13 Nov 2024
  • Penetration Testing | Kali Linux | Metasploitable2 | Hands-on Cybersecurity Lab

    1 project | dev.to | 25 Oct 2024
  • Just want simple TLS for your .internal network?

    8 projects | news.ycombinator.com | 17 Oct 2024
  • FIDO Alliance publishes new spec to let users move Passkeys across providers

    3 projects | news.ycombinator.com | 16 Oct 2024

Did you konow that Ruby is
the 12th most popular programming language
based on number of metions?