
EVOLUTION: Asian American Arts Festival 2026
Asian American Arts, Cultural Programming, Performance Arts
EVOLUTION: Asian American Arts Festival Through a Developer’s Eyes
On Sunday, May 3, 2026, the EVOLUTION: Asian American Arts Festival returns to Lookingglass Theatre’s Water Tower Water Works in Chicago, turning a historic building into a living, breathing engine for Asian American Arts. As a senior software engineer who spends most days in code reviews and sprint planning, I’m genuinely excited about how this festival blends Cultural Programming, Performance Arts, and Community Events into something as thoughtfully designed as a well-architected system.
Why May 3 at EVOLUTION Belongs on Your Calendar
EVOLUTION is a two-day Asian American Arts Festival organized by Asian American Arts Chicago (AAAC), running May 2–3, 2026, at Water Tower Water Works in downtown Chicago (Lookingglass Theatre’s home base). Day two, on Sunday, May 3, runs from 10:00 AM to 6:00 PM and packs in music, solo theatre, dance, film, and hands-on workshops—from Northwestern’s East Asian–interest a cappella group Treblemakers at 10:15 AM to Xiaolu Wang’s 60-minute video collage on migration and identity late in the afternoon (aaac.art).
Tickets run roughly $25–$120 depending on passes and specific shows, and you can grab them directly from AAAC’s site (aaac.art). For anyone who cares about Diversity In Arts or simply wants to experience how many different ways a story can be told, EVOLUTION Festival is the kind of Cultural Programming you plan a weekend around, not just drop into between errands.
A Developer’s Take: Festival as Distributed System
When I read through the May 3 program, it looked less like a simple schedule and more like a highly available microservices architecture. Each Performance Arts “service” has its own input, output, and latency profile: Treblemakers’ multilingual a cappella set, Lauren Kee’s solo theatre piece, Jaerin Son’s AR-infused pop-up book workshop, Sierra Sikora’s singer-songwriter set, and film blocks featuring creators like Hannah Ii‑Epstein, Okyoung Noh, and Asuka Lin (aaac.art).
If you’re used to juggling overlapping standups and deployment windows, you already think in timelines and dependencies. Planning your day at EVOLUTION can feel similar—except your “deploys” are live performances, and your “logs” are the memories you carry home. To make that planning concrete, I even sketched a tiny script to map out my ideal May 3 schedule.
from datetime import time
events = [
{"name": "Treblemakers A Cappella", "start": time(10, 15), "end": time(10, 45)},
{"name": "Jaerin Son Pop-up Workshop", "start": time(11, 0), "end": time(16, 0)},
{"name": "Sierra Sikora Live Set", "start": time(11, 30), "end": time(12, 15)},
{"name": "Huy Nguyen: Three Horse Men", "start": time(12, 30), "end": time(13, 30)},
{"name": "Film Showcase Block", "start": time(14, 0), "end": time(15, 0)},
{"name": "Dawn Xiana Moon + Yini Sun", "start": time(16, 0), "end": time(16, 45)},
]
def print_schedule(events):
for e in sorted(events, key=lambda x: x["start"]):
print(f"{e['start'].strftime('%I:%M %p')} - {e['end'].strftime('%I:%M %p')}: {e['name']}")
if __name__ == "__main__":
print_schedule(events)Run something like this locally and tweak the events list to prioritize the Cultural Programming you care about most—film, live music, or experimental theatre. It’s a fun way to translate a dense program into a day that actually fits your energy budget.
Diversity In Arts as a Core Feature, Not an Add-On
In tech, we talk about “baking in” accessibility or security rather than bolting them on at the end. EVOLUTION Festival does that for Diversity In Arts. It’s not a themed side panel; it’s the entire architecture. Over 125 artists and performers across dance, theatre, film, music, and interactive art are foregrounding Asian American, Pacific Islander, and Native Hawaiian stories (choosechicago.com).
On May 3 alone, you move from Treblemakers’ multilingual harmonies to Huy Nguyen’s solo theatre piece, then into film by artists like Hannah Ii‑Epstein and Asuka Lin, and onward to music that fuses Chinese traditional sounds with alt‑folk and jazz by Dawn Xiana Moon and Yini Sun. This is what modern Asian American Arts looks like: not a single monolithic “API,” but a federation of wildly different voices that still interoperate around shared histories and futures.

Live sets at EVOLUTION turn personal narratives into shared community experiences.
Community Events That Feel Like an Open-Source Project
What really resonates for me as an engineer is how the festival treats Community Events as more than passive consumption. Jaerin Son’s pop-up book workshop runs for most of the day, inviting people into puppetry and AR elements, not just to watch but to make. The food and craft market showcases creators like conceptual ceramist Henna Zamurd Butt, whose functional ceramics and sound sculptures blur the line between object and performance (aaac.art).
It feels a lot like a well-run open-source ecosystem: maintainers (AAAC and curators), core contributors (artists), and a community of users (audience) who are encouraged to fork ideas, remix them, and bring them back to their own neighborhoods, classrooms, or Slack channels. EVOLUTION’s Cultural Programming is a reminder that Performance Arts can be as participatory and iterative as any software project.
How to Make the Most of EVOLUTION as a Busy Tech Professional
If your calendar normally lives in Jira and Google Calendar, here’s how I’d “deploy” a May 3 visit:
Block a full afternoon so you’re not context-switching between work and art; treat the EVOLUTION Festival like a dedicated sprint for your creative brain.
Pick one anchor Performance Arts event (a film block, a music set, or a theatre piece) and then layer in shorter Community Events like the workshop or market around it.
Bring a teammate or friend who doesn’t usually attend cultural programming—pair programming, but for expanding your sense of what Asian American Arts can be.
💡 Pro Tip: Think of each performance as a different “framework” for storytelling. Try at least one that’s outside your usual stack—Butoh-inspired movement, drag, or experimental film.
EVOLUTION as an Ongoing Commit, Not a One-Off Release
The name EVOLUTION is apt. This isn’t a static snapshot of Asian American Arts; it’s a versioned release in a long changelog of community building. Each year’s festival refactors what Cultural Programming can look like, how Performance Arts can hold complex identities, and how Community Events can center Diversity In Arts without flattening it into a buzzword.
As engineers, we spend our days shaping digital experiences. Spending a Sunday like May 3 at EVOLUTION Festival is a chance to let live, embodied experiences reshape us in return. If you’re anywhere near Chicago that weekend, consider this your pull request: step away from the IDE, step into Water Tower Water Works, and let this festival rewrite a few assumptions about culture, community, and what “Asian American Arts” can mean in 2026 and beyond.