Jemima Abu

Jemima Abu

Jemima Abu is an award-winning product engineer, Google Developer Expert, Microsoft MVP, and Certified Professional in Accessibility Core Competencies. She is passionate about diversity in technology and accessibility in web development.
The Cost of Accessibility in AI
AI Coding Summit NYCAI Coding Summit NYC
Upcoming
The Cost of Accessibility in AI
"It costs too much" is one of the most common things I hear about accessible development. And the same thought-process applies in AI-generated code. An LLM defaults to what's easiest to write, and correcting for accessibility feels like extra work. Or at least that's what it's been trained to think.

But what if the opposite were true?

I ran the same prompts through the same model twice (once without any accessibility guidance in context and once with a lightweight accessibility skill loaded) and what I found confirms what accessibility advocates have been saying all along: it actually costs more and takes longer to ship inaccessible code.

In this talk, I'll walk through the experiments, the numbers, and the failure modes it exposed. We'll look at what the AI actually built without accessibility context (spoiler: lots of custom code for features the browser already handles), why the accessibility-aware run converged faster, and what this means for how we ship AI-assisted code.

You'll leave with the exact prompts and context patterns needed to make your model ship faster, more accessible UI on the first try, plus a data-backed argument for making accessibility a default in every AI-assisted workflow - not just because accessibility means that everyone can use the products we build - but because it's cheaper too.
Your React App Doesn't Need All That JavaScript
React Summit 2026React Summit 2026
27 min
Your React App Doesn't Need All That JavaScript
Should we be using a state management library to toggle dark mode? Do we really need a custom hook for opening an accordion? And how many event listeners is too many when animating on scroll?

React gives us an incredibly powerful way to build UI, but not every UI behaviour needs React level machinery.

In this talk, we’ll take a look at how to use HTML and CSS to build simpler alternatives to common interactive components such as accordions, modals, scroll transitions, carousels etc We’ll also take a look at the performance and accessibility benefits and real-life applications and use-cases of these components. 

The goal is to simplify how we handle content, display and animation using native browser features and leaving React to do what it's best at: everything else.