Urgent.News

650+ sources. One page. See who else covered it.

Editions

Tech

Developers you build for the future...Don't forget to be inclusive!

Developers you build for the future...Don't forget to be inclusive! I build things for blind people. I'm a braille transcriber. I work in accessibility every day. Last January, at an NFB chapter meeting, a member walked in wearing Meta Ray-Ban smart glasses. AI. Camera. Voice. Every blind person in that room wanted to know: How do we get these? So I built pifcoin.org — a charity crypto to fund…

Developers, if you're constructing tools for the future, remember to prioritize inclusivity. I'm Chris, a braille transcriber and accessibility advocate. Last January, at an NFB chapter meeting, a member arrived wearing Meta Ray-Ban smart glasses. Intrigued, I founded pifcoin.org – a charity cryptocurrency aimed at funding assistive technology access.

I also launched aurastoria.com to create revenue and liquidity for these tokens. I recognized the need for an Accessibility Center within the site, as accessibility should be uncomplicated. However, when marketing agencies assessed my work, they focused on SEO, funnels, and social traction, disregarding the blind users and the NFB chapter.

They overlooked the Accessibility Center on my site, a result of my expertise in accessibility. To developers, I implore: don't treat accessibility as a feature to complete in a sprint. It's not a checkbox; it's architecture. If you're developing AI tools, camera applications, voice interfaces, or any screen-based product, remember that blind users aren't an edge case; they're your users.

The technology for these smart glasses exists now; the only gap is the pipeline between development and distribution. Developers who wish to create accessible AI tools or understand how to bridge this gap should reach out to me directly. Don't merely upvote and scroll; take action now.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

Your Browser Automation Clicks Might Be Landing 25% Off — And Nothing Will Tell You

I spent a day pointing an AI agent at a browser to publish one product across four marketplaces. Most of it worked. The parts that didn't work failed in the worst possible way: silently , with no…

  • Browser automation clicks fail silently, no error messages
  • Coordinate systems differ between automation tool and page
  • Scaling factor of 0.7484 corrects click landing issues

Bloom Filters

One-liner: A probabilistic data structure that tells you if an element is definitely not in a set, or possibly in a set — using very little memory.

  • Bloom filters quickly tell if something is definitely not in a set or maybe it is.
  • They use a big array of bits and hash functions to add and check items.
  • Bloom filters save massive memory but can give false positives.

More from Sunday 16 August →