Free tech & AI classes for senior centers

Technology and AI basics, taught with hands-on help.

Project AI Literacy brings hands-on tech and AI classes to senior centers at no cost. We cover the basics step by step, and every class leaves plenty of room for questions and one-on-one help.

Built from real classroom experience
Congratulations! You've won a $500 gift card. Click here to claim before midnight.
๐Ÿšฉ Urgent language + too good to be true
When in doubt, don't respond.
100% free

Why this matters

Every day, more of life runs through a screen.

Banking, doctor's appointments, family photos, staying in touch โ€” it's all moved onto phones and apps. For a lot of seniors, that shift happened fast, without anyone sitting down to explain it.

01

Everyday tech that simplifies life

We cover basic to intermediate skills seniors actually use โ€” setting up emergency contacts, adding a medical ID, sharing photos with family, and more.

02

Real protection from scams

AI has made scams more convincing than ever. We teach the red flags that keep seniors' money and information safe.

03

AI made genuinely useful

We break down how generative AI actually works in simple terms, then show how it fits into everyday life โ€” drafting a text to family, planning meals, getting a quick answer without digging through search results.

Curriculum

What a Project AI Literacy class covers

Every class is built the same way: one clear topic, live demonstrations on a real phone, and a QR code so seniors can take the slides home.

Section 01

Helpful iPhone Skills

The everyday phone habits that make everything else easier โ€” and keep the phone running safely.

Updating apps & software QR codes Calendar reminders Emergency contacts Photo organization Camera tips
Section 02

Everyday Uses for AI

What AI actually is, in plain language โ€” and simple, real prompts seniors can try that same day.

Asking AI questions Polishing emails & texts Meal plans & itineraries Comparing ChatGPT, Claude & Perplexity Image generation
Section 03

Scam Awareness

How to spot a scam before it costs you โ€” including the new tricks AI has made possible.

Common red flags AI voice & photo scams What to do when in doubt

Try a piece of the class

Spot the red flags

This is a real exercise from our Scam Awareness class. Tap the phrases that would make you pause.

๐Ÿ‘† Tap any underlined phrase in the message

๐Ÿ’ฌ Text message ยท Unknown sender
Hi, this is your bank. We noticed unusual activity on your account. Act now or your account will be locked. Please reply with your account number and PIN to verify your identity, and you'll receive a $50 reward for confirming today.
0 of 4 red flags found

How it works

Easy to schedule, always free

There's no cost to your center, ever. Some details below are placeholders โ€” swap in your real numbers once you've run a few more classes.

$0

Cost to your center โ€” always free

60 min

Per class, with time built in for questions

1โ€“3

Classes per visit โ€” pick a single topic or a full series

Up to 20

Group size, from a handful of seniors to a full room

About Project AI Literacy

"I started Project AI Literacy as a National Honor Society service project โ€” a few tech classes at a local senior center. It didn't take long to realize how real the need was, and how much seniors wanted someone to sit down and go slow with them. What began as a school requirement turned into something I wanted to keep building."

โ€” Sky Maulik, Founder & high school student

Grounded in real classroom experience 2 classes delivered Growing to new centers

Get in touch

Bring Project AI Literacy to your center

Every class is free โ€” our goal is simply to grow tech and AI literacy among seniors. Tell us a bit about your seniors and we'll put together a class that fits.

Request a class

Prefer to reach out directly? Here's how:

Email project.ai.literacy@gmail.com
Serving San Diego County senior centers and libraries
const spots = document.querySelectorAll('#scamMsg .spot'); const progress = document.getElementById('progress'); const note = document.getElementById('note'); let found = 0; const total = spots.length; spots.forEach(el => { el.addEventListener('click', () => { if(!el.classList.contains('found')){ el.classList.add('found'); found++; progress.textContent = found + ' of ' + total + ' red flags found'; note.textContent = el.getAttribute('data-note'); if(found === total){ note.textContent = "That's all four โ€” nicely done. When in doubt, don't respond."; } } else { note.textContent = el.getAttribute('data-note'); } }); });