CO2 Impairs Decision Making: Fix the Air in Your Office
A blog post about CO2 levels impairing decision making went viral on HN, sparking debate on monitoring, skepticism, and the real-world implications for productivity.
What if the biggest bottleneck in your day isn't your code, meetings, or inbox, but the air you're breathing? Mike Bowler's post "The bottleneck might be the air in the room" argues that elevated CO2 levels directly impair decision-making, and the Hacker News community took notice. The story linked elevated CO2 to reduced cognitive performance, gaining 85 upvotes and 40 comments with opinions ranging from enthusiastic endorsement to healthy skepticism.
What's the Story?
Mike Bowler's blog post recounts installing a CO2 monitor in his home office. He noticed that when CO2 levels rose above 1000 ppm, he felt sluggish and made worse decisions. He cites studies linking CO2 to cognitive decline and advocates for monitoring indoor air quality. The post is personal, data-driven, and calls for more awareness, especially in workplaces.
Why It's Resonating on HN
The HN thread mixes personal anecdotes, scientific debate, and calls for action. One commenter wrote:
I really wish Apple or another major OEM would integrate a CO2 monitor into watches or smartphones. Suddenly, everybody would be aware of the CO2 level, get alerts, and the problem would solve itself.
Another commenter raised a practical concern:
Oh, this is absolutely so relevant. I wonder if there are any high quality studies analyzing driving performance against CO2 buildup in cars.
But there's pushback. One commenter questioned the evidence:
I'm not saying this isn't a legitimate concern, but this really seems to have exploded amongst the tech community as the next obsession.
The thread also includes a counterpoint from submarine operations: sailors function fine at thousands of ppm. Another commenter expanded the scope:
CO2 is just a tip. The office or home is a toxic environment anyway — plastic, formaldehyde, air fresheners...
The community is engaged but divided — perfect for a good discussion.
The Science Behind CO2 and Cognition
Studies from Harvard T.H. Chan School of Public Health and Lawrence Berkeley National Laboratory show that decision-making performance drops significantly at CO2 levels above 1000 ppm. The submarine counterpoint is interesting but mostly irrelevant — submariners are adapted to a controlled environment. For office workers, the effects are real. CO2 is also a proxy for ventilation: if CO2 is high, other pollutants like VOCs and viruses likely are too. Fixing ventilation helps across the board.
What This Means for Builders
If you build products for knowledge workers — productivity tools, collaboration software, or workspaces — CO2 awareness is a new design constraint. Here are practical implications:
-
Integrate CO2 data: Your laptop doesn't have a sensor, but you can connect to monitors like the Aranet4 via Bluetooth. Build a dashboard widget to show current levels.
-
Alert on high CO2: Pair a sensor with a webhook. For example, using a Raspberry Pi with a CO2 sensor and the
mh-z19library:
import time
import requests
from mh_z19 import read_co2
while True:
co2 = read_co2()
if co2 > 1000:
requests.post('https://hooks.slack.com/services/YOUR_WEBHOOK_URL', json={'text': f'CO2 at {co2} ppm!'})
time.sleep(300)
-
Design for better air: Add a CO2 sensor and simple display to your workspace. Many monitors are under $200. The act of seeing the number can change behavior — open a window, take a break.
-
Contextual productivity: Instead of a generic focus mode, a tool could check air quality before suggesting deep work. If CO2 is high, prompt a walk or ventilation break.
Should You Care?
If you spend more than an hour a day in a closed room with other people (office, meeting room, café), yes. The cost of a CO2 monitor is trivial compared to the potential gain in mental clarity. If you work alone in a large space or outdoors, probably not. But for remote workers and office dwellers, CO2 is a silent drag on performance.
Takeaway: You don't need a PhD to open a window when your monitor reads 1500 ppm. Awareness alone can improve your decision-making.