The barrier to entry is a feature and not a bug.
I’ve removed Disqus. It was making my blog worse
31–40 of 408 posts
Re: I’ve removed Disqus. It was making my blog worse
#32Earlier quoted context omitted.
False equivalence. That the creators of various PHP blogging platforms sucked at security does not invalidate the poster's point that a self-hosted CMS with a simple comment system is indeed much simpler and easier to reason about.
I suppose it's rather the "without maintenance" part. Had everyone updated their WordPress sites the problem would've been much less.
In the 2010s if you left a wordpress blog unattended even with the official default filter plugin it would fill with spam comments. I dont know if thats still a problem.
Re: I’ve removed Disqus. It was making my blog worse
#33I made Bluniversal Comments partly for this, but there are other Bluesky-based solutions out there if you prefer.
Re: I’ve removed Disqus. It was making my blog worse
#34Re: I’ve removed Disqus. It was making my blog worse
#35If I where to ditch it to save the money, I'd look into integrating Mastodon into the page, I saw somewhere that they used Mastodon as their comment system (it's basically a thread on Mastodon that is embedded in the blog page).
Re: I’ve removed Disqus. It was making my blog worse
#36I ditched Disqus for the exact same reason, too many ads Then I built an alternative using free Cloudflare Worker https://github.com/est/req4cmt It's a simple service that transform comment POST form data to JSON, append to a .jsonl file, then do a `git push` It renders comments by `git fetch` from a .jsonl file from a remote repo, or simply via raw.githubusercontent.com if your repo was hosted by Github. The advanta…
You now have a direct way for users to insert data into your repo, which can include illegal things. And if you're required to delete it later, you'll be forced to edit your git history.
But if everyone behaves, it's a great solution
Re: I’ve removed Disqus. It was making my blog worse
#37Utterances: https://utteranc.es/
No lock-in, except for GitHub, I suppose.
Re: I’ve removed Disqus. It was making my blog worse
#38Utterances: https://utteranc.es/
Or just leave it. Nobody needs to comment on blog posts, really. :D
Re: I’ve removed Disqus. It was making my blog worse
#39I just can't be bothered to have comments on my site. It adds nothing but headaches. Cross-posting articles to HN or Reddit for comments is a much nicer way, I think.
Re: I’ve removed Disqus. It was making my blog worse
#40I ditched Disqus for the exact same reason, too many ads Then I built an alternative using free Cloudflare Worker https://github.com/est/req4cmt It's a simple service that transform comment POST form data to JSON, append to a .jsonl file, then do a `git push` It renders comments by `git fetch` from a .jsonl file from a remote repo, or simply via raw.githubusercontent.com if your repo was hosted by Github. The advanta…
The issue with that approach is risk. You now have a direct way for users to insert data into your repo, which can include illegal things. And if you're required to delete it later, you'll be forced to edit your git history. But if everyone behaves, it's a great solution