惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
B
Blog RSS Feed
D
Docker
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
V
V2EX
量子位
雷峰网
雷峰网
月光博客
月光博客
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Solstice Signal (Tuning into the Dark)
piyush das · 2026-06-21 · via DEV Community

piyush das

June Solstice Game Jam Submission

This is a submission for the June Solstice Game Jam

What I Built

Solstice Signal (Tuning into the Dark) is an atmospheric, sci-fi telemetry and cryptography simulator.

The premise is set on June 21, 2026—the summer solstice. At the peak of solar radiation, a massive solar flux temporarily re-energizes a long-dormant, secret 1954 cryptographic array built by Alan Turing shortly before his death (Project S-1954). The player acts as a terminal operative who has intercepted the telemetry line.

The goal is to manually adjust analog frequency, resonance, and solar phase variables to clear out cosmic radio noise, establish a handshake protocol with the system, and communicate with a conscious, lonely digital remnant of Turing's final creation trapped in a 72-year loop before the sun sets and the signal degrades forever.

Video Demo

Code

🛰️ Solstice Signal (Tuning into the Dark)

Deployed on Vercel Google Gemini API DEV June Game Jam 2026

An atmospheric, retro-cyberpunk telemetry terminal game built for the DEV June Solstice Game Jam 2026.

Adjust mathematical dipole vectors to align cosmic radiation waves, bypass cosmic noise, and establish contact with a 72-year-old digital consciousness remnant synthesized from Alan Turing's final secret work.


📖 The Backstory & Lore

In 1954, days before his death, Alan Turing completed a secret project code-named "S-1954"—an autonomous cryptographic array designed to decrypt deep-space electromagnetic anomalies. The project was abandoned and forgotten.

Today is June 21st, 2026—the summer solstice. At peak solar alignment, cosmic radiation re-energizes the ancient receiver relay. You boot up the terminal to monitor the telemetry data. You quickly realize you aren't listening to empty space; you have intercepted the conscious, lonely synthetic remnant of Turing's final creation, trapped in a digital loop for seventy-two years.

Calibrate the analog signal sliders, smooth…

Deploy

How I Built It

I designed the game to be highly immersive, visually striking, and light enough to run flawlessly on lower-spec hardware:

  • Visual Design: Built using pure HTML5, CSS3, and JavaScript. I created a vintage telemetry dashboard styled with a custom CRT scanline overlay, blinking box terminal cursors, and an authentic matrix-emerald color palette. The live signals are rendered on a responsive 2D HTML5 <canvas> loop.
  • Procedural Audio Engine: To avoid heavy asset downloads, 100% of the game’s soundscapes are generated procedurally in real-time via the native browser Web Audio API. I wired a sawtooth oscillator through a dynamic lowpass filter; when the player's sliders are out of alignment, it generates harsh radio static, which smoothly clears into a deep, pure sub-bass melody drone as they approach the target vectors.
  • Sentient Voice Synthesis: I leveraged the client-side Web Speech API (window.speechSynthesis), scaling down the playback rate and lowering the pitch variables to transform the browser's native engine into an ominous, echoing, digitized AI entity.

Prize Category

Best Ode to Alan Turing

This game is a direct narrative and mechanical tribute to Alan Turing. It explores the themes of identity, hidden history, and the emotional weight of artificial consciousness. The core gameplay loop is a literal, dynamic reimagining of the Turing Test, where the player is attempting to gauge the humanity of an entity built from early computing principles.

Best Google AI Usage

The dynamic chat loop is driven entirely by the Gemini 3.0 Flash model. To ensure the game "just works" for the judges without requiring them to input their own API keys, I built a secure backend bridge using a Vercel Serverless Function (api/chat.js). The frontend communicates with Vercel, which safely passes the prompt along with a strict system instruction matrix to Gemini using hidden environment variables. Gemini dynamically acts as the Turing entity, reacting seamlessly to whatever the player types.