this post was submitted on 23 Nov 2024
8 points (100.0% liked)

Blind Main

487 readers
10 users here now

The main community at rblind.com, for discussion of all things blindness.

You can find the rules for this community, and all other communities we run, here: https://ourblind.com/comunity-guidelines/ Lemmy specifics: By participating on the rblind.com Lemmy server, you are able to participate on other communities not run, controlled, or hosted by us. When doing so, you are expected to abide by all of the rules of those communities, in edition to also following the rules linked above. Should the rules of another community conflict with our rules, so long as you are participating from the rblind.com website, our rules take priority. Should we receive complaints from other instances or communities that you are repeatedly, knowingly, and maliciously breaking there rules, we may take moderator action against you, even if your posts comply with all of the rblind.com rules linked above.

founded 1 year ago
MODERATORS
top 4 comments
sorted by: hot top controversial new old
[–] breakingcups@lemmy.world 2 points 5 hours ago (1 children)

How would they even deem to determine that one is not blind over the internet?

[–] BakedCatboy@lemmy.ml 1 points 3 hours ago

It seems they decided that based on the author saying that they "looked at the browser console" so either based on using the word "looked" or they deemed using the browser console to be sketchy and enough to disqualify the author, either way pretty shitty.

[–] CameronDev@programming.dev 2 points 6 hours ago (1 children)

Out of curiosity, what are the preferred anti-bot/spam systems that work for blind users? How do they work?

[–] fastfinge@rblind.com 3 points 6 hours ago

Proof of work is pretty good. Also, email and phone number verification can reduce the need for this type of verification at all. Similarly, punting the problem to someone else and allowing login via Apple/Facebook/other open ID provider can help. Apple also has a system for verifying that a request comes from a real apple device that services like cloudflare use. But if you have to do it yourself, the key is offering a visual captcha, an audio captcha, and a text-based captcha. Also, try to maintain a trust score for both accounts and IP addresses. Captchas have to made so difficult today to keep out the bots that you need to make sure your users only have to solve them once. As well, if I know the captcha will only happen once, while it’s not ideal, I could request help with it. But if the captcha is on every login, or once a day or whatever, I can’t. Between proof of work, rate limiting, and email verification, and trust scores, 99 percent of captchas aren’t needed and aren’t doing anything. So the first step is understanding the problem you’re trying to solve, and determining if a captcha is the best way to solve it at all. It probably isn’t.