2026-08-31 12:29:17 +02:00
<!doctype html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< title > Hephaestus — the forge< / title >
< meta name = "description" content = "A code host you sign in to with a Bitcoin Cash wallet. Repos hosted, cold blobs on Sia. No email, no password reset, no middleman." >
< style >
:root{
--bg:#0b0e14; --panel:#141a24; --panel2:#18202c; --line:rgba(255,255,255,.09);
--ink:#e7eaf1; --mut:#8b98a9; --dim:#5e6678; --acid:#d6ff3d;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:radial-gradient(1100px 560px at 50% -12%,#16202e,var(--bg));
color:var(--ink);font:16px/1.65 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;min-height:100vh;
display:flex;flex-direction:column}
a{color:var(--acid)}
.wrap{max-width:820px;margin:0 auto;padding:0 1.2rem;width:100%;flex:1}
header.hero{text-align:center;padding:6rem 1.2rem 1rem}
.mark{font-size:64px;line-height:1}
h1{font-size:clamp(2.2rem,6vw,3.4rem);margin:.5rem 0 .3rem;letter-spacing:-0.01em}
h1 .g{color:var(--acid)}
.tag{color:var(--mut);font-size:1.1rem;max-width:600px;margin:0 auto}
.cta{margin-top:2rem;display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;text-decoration:none;padding:12px 22px;border-radius:10px;font-size:14.5px;font-weight:500;
border:1px solid var(--line);color:var(--ink);background:transparent;transition:filter .1s,background .1s}
.btn.acid{background:var(--acid);color:#0b0e14;font-weight:600;border-color:var(--acid)}
.btn:hover{filter:brightness(1.12);background:var(--panel)}
.btn.acid:hover{background:var(--acid)}
section.facts{padding:3rem 0 1rem}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
.card{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:20px 22px}
.card h3{margin:0 0 .35rem;font-size:15px;color:var(--ink);letter-spacing:.01em}
.card p{margin:0;color:var(--mut);font-size:13.5px;line-height:1.6}
.card b{color:var(--ink)}
section.stack{padding:2rem 0}
dl.spec{display:grid;grid-template-columns:auto 1fr;gap:8px 22px;margin:0;font-size:13.5px}
dl.spec dt{color:var(--dim);white-space:nowrap;font-family:ui-monospace,monospace}
dl.spec dd{margin:0;color:var(--mut)}
dl.spec dd b{color:var(--ink)}
dl.spec a{color:var(--acid)}
section.stack h2{font-size:1.15rem;margin:0 0 .8rem;color:var(--ink);font-weight:500}
footer{border-top:1px solid var(--line);padding:2.4rem 1.2rem 3.4rem;color:var(--dim);font-size:13px;text-align:center;margin-top:3rem}
footer a{color:var(--mut)}
footer a:hover{color:var(--ink)}
code{background:#0e131b;border:1px solid var(--line);border-radius:5px;padding:1px 6px;font-family:ui-monospace,monospace;font-size:12.5px}
< / style >
site: add favicon link to every silentmode.st HTML page
Bulk-inserts <link rel="icon" type="image/svg+xml" href="/favicon.svg"> before
the </head> tag on every silentmode.st page that was missing it. All 36 site
HTML pages now advertise the chain-links favicon; browsers show it in tabs
and bookmarks across the whole umbrella site.
Pages touched (29): apps/, choose/*, deviant/* (7 pages under the parent
house), hephaestus/, hephaestus.x/* (9 chain-published mirror pages),
nav/ (redirect stub), register.html (redirect stub), sirius/,
sirius/register.html, store/ (redirect stub), tlds/.
Already had favicon from earlier passes (7): index.html, brand/,
tools/, prometheus/, helios/, hermes/, releases/.
Line-ending preservation: choose/index.html and sirius/register.html were
originally stored with CRLF endings; the plain Python read/write path
normalized them to LF and produced a noisy diff. Both files re-serialized as
CRLF before the favicon insert to keep the diff to +1 line each.
Deploy: rsync-equivalent tar-pipe to /opt/silent-mode/site/, plus per-file scp
for the two CRLF-corrected files. Verified live: 7 spot-checked URLs each
report exactly one <link rel="icon"> in served HTML.
2026-08-31 21:43:25 +02:00
< link rel = "icon" type = "image/svg+xml" href = "/favicon.svg" >
2026-08-31 12:29:17 +02:00
< / head >
< body >
< div class = "wrap" >
< header class = "hero" >
< div class = "mark" > ⚒️< / div >
< h1 > < span class = "g" > Hephaestus< / span > < / h1 >
< p class = "tag" > A code host you sign in to with a Bitcoin Cash wallet. No email, no password reset, no middleman.< / p >
< div class = "cta" >
< a class = "btn acid" href = "https://code.silentmode.st/user/oauth2/hephaestus-wallet" > Sign in with wallet →< / a >
< a class = "btn" href = "https://code.silentmode.st/explore/repos" > Browse repos< / a >
< a class = "btn" href = "https://silentmode.st/hephaestus/" > Read the docs< / a >
< / div >
< / header >
< section class = "facts" >
< div class = "grid" >
< div class = "card" >
< h3 > Your wallet is your account< / h3 >
< p > Generate or import a BCH wallet in the browser. Sign one challenge, you're in. < b > Nothing to remember except your recovery phrase.< / b > < / p >
< / div >
< div class = "card" >
< h3 > Storage on Sia< / h3 >
< p > LFS, releases, packages, attachments — all sharded and encrypted across independent Sia hosts worldwide. < b > Live git stays on a fast local disk< / b > for speed.< / p >
< / div >
< div class = "card" >
< h3 > Standard git, nothing weird< / h3 >
< p > < code > git clone< / code > , < code > git push< / code > , PRs, issues, releases, container/npm registries. Bring your existing muscle memory.< / p >
< / div >
< / div >
< / section >
< section class = "stack" >
< h2 > Where it lives< / h2 >
< dl class = "spec" >
2026-08-31 15:59:03 +02:00
< dt > forge< / dt > < dd > < a href = "https://code.silentmode.st/" > code.silentmode.st< / a > (mirror) · < b > hephaestus.x< / b > (primary) — same Forgejo 10, dual-hostname< / dd >
< dt > this name< / dt > < dd > < b > hephaestus.x< / b > — on-chain BCNR certificate, chipnet, owner-controlled, TLS via Silent Mode CA< / dd >
< dt > storage< / dt > < dd > Sia network via < code > s3.silentmode.st:8600< / code > , encrypted client-side · static landing mirrored to Sia bucket as DR backup< / dd >
< dt > source< / dt > < dd > < a href = "https://code.silentmode.st/silentmode/hephaestus" > silentmode/hephaestus< / a > — the docker-compose + auth-proxy + Caddyfile< / dd >
2026-08-31 12:29:17 +02:00
< dt > protocol< / dt > < dd > BIP-137 "Bitcoin Signed Message" over BCH secp256k1 — any wallet that speaks Sign Message can log in< / dd >
< / dl >
< / section >
< / div >
< footer >
A tool from < a href = "https://silentmode.st/" > Silent Mode< / a > · alpha on chipnet · one wallet, all of it
< / footer >
< / body >
< / html >