Conformity Gate
The Hidden Episode 9 of Stranger Things

Conformity Gate is a fan tribute website investigating the conspiracy theory about an allegedly hidden ninth episode in Season 5 of Stranger Things. When the "Conformity Gate" theory went viral in the Stranger Things community in December 2025 — the belief that Netflix hid a secret ninth episode scheduled for January 8, 2026, 02:00 AM (CET) — it was clear: fans needed a gathering place.

Within just 2 hours, this platform emerged as a spontaneous reaction to the hype. The goal was simple but twofold: a digital support group in case the episode doesn't exist — and a shared celebration chat if Netflix actually delivers. The site was meant to give fans a place to speculate together, collect evidence, and sit in front of their screens together on D-Day.

What started as a quick weekend project evolved into a full-fledged full-stack application with production-ready features: real-time chat with moderation, evidence database, admin controls, and immersive Stranger Things aesthetics. The project shows how technical skills and creative storytelling can come together — even under extreme time pressure.

The Theory Behind It

The "Conformity Gate" theory emerged from fan speculation about strange timeline inconsistencies in Season 5, hidden Easter eggs from the Duffer Brothers in interviews, and a mysterious date — January 8, 2026, 02:00 AM (CET) — that kept popping up in fan circles. The belief: Netflix would hide an "Upside Down" episode as the ultimate plot twist.

Whether truth or collective fantasy — this site was built to capture the moment and give the community a space. No matter how it turns out, we're experiencing it together.

Technical Implementation

The landing page was designed with Stranger Things aesthetics: CRT monitor effects, scanlines, red neon glow, and atmospheric canvas lightning strikes. The live countdown ticks down in real-time to the big moment, and anyone entering the Konami code (↑↑↓↓←→←→BA) activates "Upside Down Mode" with inverted colors.

The chat system uses polling instead of WebSockets — a deliberate design choice for simplicity. 30-second intervals feel near-real-time without complicating the infrastructure. Usernames are stored persistently in LocalStorage and can't be changed. Chat history loads paginated, with a maximum of 1000 messages retained.

For moderation, there's a dual ban system: username and IP simultaneously, so incognito workarounds fail. Content filtering with ~90 bad-word patterns runs server-side via regex. Rate limiting allows 3 messages per minute, 20 per hour — all persistently stored in JSON files. Admin access runs via JWT tokens through a hidden /admin-login route.

The evidence database organizes conspiracy clues into six categories with credibility ratings, and community submissions land directly with me via Discord webhook. The entire backend is file-based — no database needed, simple backup, zero setup.

SEO was important: Nuxt SSR for full HTML before hydration, dynamic meta tags with Open Graph and Twitter Cards, Schema.org JSON-LD, and an auto-generated sitemap. The whole system runs dockerized with multi-stage build and deploys in minutes.

What I Learned

This project showed me that you can build something clean even under extreme time pressure — with the right balance between feature complexity and pragmatic architecture. File-based storage instead of PostgreSQL, polling instead of WebSockets, and yet everything feels production-ready.

In the end, Conformity Gate is more than just a fan tribute. It's a full-fledged full-stack project that shows how creative ideas and technical implementation can go hand in hand — and that the best projects often emerge from spontaneous moments.

Tech Stack

Nuxt 4Vue 3TypeScriptTailwind CSS 4PiniaJWTDocker

Project Links