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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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
Seeded Universe Recreation Engine: Building a Determinist...
Gary Doman/T · 2026-05-15 · via DEV Community

Seeded Universe Recreation Engine: Building a Deterministic Universe Timeline from One Seed

I’m building Seeded Universe Recreation Engine, a deterministic seed-based universe simulation project.

The core idea is simple but ambitious:

one canonical seed
→ physics
→ stars
→ planets
→ atmospheres
→ oceans
→ geology
→ chemistry
→ life
→ civilisation
→ signal detection
→ ARC receipts
→ branch-comparable timelines

Enter fullscreen mode Exit fullscreen mode

The project is designed around a doctrine where the universe is not manually forced into outcomes. The seed defines the canonical timeline, physics unfolds from that seed, and interventions must be receipted instead of silently rewriting causality.

What the project is

Seeded Universe Recreation Engine is a browser-based deterministic universe simulator with an optional Python/FastAPI ARC backend.

The current system combines three major pieces:

  1. Universe Engine v16
  2. Synth Origin / Proto-Synth Grid Engine
  3. Universe Bridge v1
  4. ARC-Core receipt and ledger backend

Together they create a split-screen master-control environment where the universe simulation and the synth/observer system can communicate without breaking causality.

Universe Engine v16

The Universe Engine is the deterministic simulation layer.

From one seed, the engine unfolds a traceable universe containing:

  • stars
  • planets
  • atmospheres
  • oceans
  • geology
  • chemistry
  • life checks
  • evolution paths
  • civilisations
  • signal signatures
  • intervention branches

The model includes physics concepts such as:

  • Stefan-Boltzmann temperature
  • Jeans escape atmospheres
  • water phase diagram checks
  • Kepler-style orbital structure
  • tidal locking
  • radioactive heating
  • supernova enrichment
  • Kardashev civilisation detection
  • 64-bit genome encoding
  • autocatalytic first-replication events

The point is not to hand-place life or civilisation.

The point is to let a deterministic seed produce a traceable universe state.

Zoom stack

The universe view is organized into zoom levels:

L0 → Cosmos / full universe
L1 → Galaxy cluster
L2 → Stellar system
L3 → Planet surface
L4 → Region cross-section
L5 → Molecule field
L6 → Atom patch
L7 → Synth Center / universe origin eye

Enter fullscreen mode Exit fullscreen mode

The zoom stack matters because the project is not only a visual demo. It is meant to show a universe that can be explored across scale.

From cosmos to atoms, the goal is a continuous seeded timeline.

Synth Origin

The Synth Origin layer comes from the Proto-Synth Grid Engine direction.

In this universe project, the synth sits at the center as the signal instrument.

It acts as:

  • master control eye
  • scanner surface
  • signal router
  • blueprint-driven execution shell
  • communication backbone
  • ARC-gated authority surface

In universe mode, the synth scanner can detect civilisation contacts from the universe state.

The synth’s signal network then becomes the communication backbone for universe events.

Universe Bridge v1

The Universe Bridge connects the universe simulation and the synth system without breaking causality.

The bridge flow is:

Universe state
→ bridge extraction
→ civilisation contacts
→ synth scanner feed
→ synth signal events
→ universe receipt

Enter fullscreen mode Exit fullscreen mode

The bridge logs crossings and keeps the interaction traceable.

That means the synth can observe and signal without silently mutating the canonical universe.

ARC-Core backend

The optional ARC backend provides a receipt and ledger layer.

A typical local backend setup is:

pip install fastapi uvicorn pydantic
python launch.py

Enter fullscreen mode Exit fullscreen mode

The backend direction includes:

  • universe record ledger
  • tamper-evident receipt chain
  • branch simulation
  • REST endpoint surface
  • intervention evidence
  • origin record tracking

The repo’s architecture frames ARC-Core as the system that records truth, receipts, and branch outcomes.

TT-101 Doctrine

The project follows six core TT-101 rules:

1. Seed canonical — the seed is never changed to force outcomes.
2. Causality absolute — no signal travels faster than c_sim.
3. Energy conserved — ΔE_total = 0 always.
4. Intelligence emergent — life cannot be hardcoded, only arise from physics.
5. Interventions receipted — every perturbation is logged in ARC.
6. Branch comparable — a modified universe never replaces the canonical timeline.

Enter fullscreen mode Exit fullscreen mode

This doctrine is the most important part of the project.

It means the simulation is not just about visuals. It is about traceability, causality, receipts, and controlled branching.

Why branch comparison matters

In a normal simulation, changing a value can overwrite the timeline.

In Seeded Universe Recreation Engine, an intervention should create a comparable branch.

That means:

canonical universe remains intact
intervention creates branch
branch stores divergence
branch can be compared
receipts explain what changed

Enter fullscreen mode Exit fullscreen mode

This makes the project more like a deterministic timeline laboratory than a simple sandbox.

Master Control

The top-level launcher is MasterControl.html.

It provides:

  • split view between universe and synth
  • universe-only mode
  • synth-only mode
  • synth-center jump
  • bridge test pulse
  • ARC console access
  • draggable split panels

The point of Master Control is to make the system observable from one surface.

File structure direction

The repo includes major pieces such as:

MasterControl.html
launch.py
universe_bridge.js
sure/universe_observer_v16_vision.html
synth/index.html
ARC_Console/

Enter fullscreen mode Exit fullscreen mode

The architecture connects them like this:

MasterControl.html
├─ Universe Engine v16
├─ Universe Bridge
├─ Synth Origin
└─ ARC-Core

Enter fullscreen mode Exit fullscreen mode

Why this matters

Seeded Universe Recreation Engine is exploring a larger question:

Can a deterministic seed-based world be made traceable from cosmic scale down to chemistry, life, intelligence, signal detection, and intervention receipts?

Enter fullscreen mode Exit fullscreen mode

That makes the project useful as an experimental foundation for:

  • universe simulation
  • deterministic timelines
  • procedural world generation
  • AI observer systems
  • seeded replay
  • emergent-life modeling
  • branch-comparable experiments
  • local-first scientific visualization
  • ARC-style receipt ledgers
  • Synth/observer interfaces

Repo

https://github.com/GareBear99/Seeded-Universe-Recreation-Engine

What I’m looking for

I’m looking for feedback from:

  • simulation developers
  • procedural generation developers
  • game engine developers
  • physics/math people
  • AI researchers
  • local-first software builders
  • JavaScript developers
  • Python/FastAPI developers
  • worldbuilding/tooling developers
  • people interested in deterministic timelines

Useful feedback includes:

  • physics model suggestions
  • seed/replay architecture feedback
  • zoom-stack design ideas
  • branch comparison design feedback
  • ARC receipt format suggestions
  • Universe Bridge feedback
  • Synth Origin integration feedback
  • performance ideas
  • visual clarity improvements
  • docs/onboarding suggestions

Long-term direction

The long-term direction is a deterministic universe recreation engine where the whole world can be traced back to a canonical seed.

Not just procedural noise.

Not just a pretty universe view.

A seed-rooted, branch-comparable, receipt-backed simulation where physics, life, civilisation, observation, and intervention all remain traceable.

Related ARC / Synth Ecosystem Repos

Seeded Universe Recreation Engine is part of a larger local-first ARC/Synth research ecosystem.

Related projects:

Together, these repos form the larger architecture around deterministic simulation, local-first AI memory, governed receipts, language routing, visual replay, and Synth-style runtime interfaces.