Initial protopunk.salon site
Static site about the punk emergence of protocols, protopian futures through P2P and P4P coordination. Links to theopenmachine.net, mycostack.xyz, and atlasresear.ch. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
5d7194fb6c
|
|
@ -0,0 +1,3 @@
|
|||
FROM nginx:alpine
|
||||
COPY index.html /usr/share/nginx/html/index.html
|
||||
EXPOSE 80
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
protopunk-salon:
|
||||
build: .
|
||||
container_name: protopunk-salon
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- traefik-public
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.docker.network=traefik-public"
|
||||
- "traefik.http.routers.protopunk.rule=Host(`protopunk.salon`) || Host(`www.protopunk.salon`)"
|
||||
- "traefik.http.routers.protopunk.entrypoints=web"
|
||||
- "traefik.http.services.protopunk.loadbalancer.server.port=80"
|
||||
|
||||
networks:
|
||||
traefik-public:
|
||||
external: true
|
||||
|
|
@ -0,0 +1,839 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>PROTOPUNK.SALON — The Punk Emergence of Protocols</title>
|
||||
<meta name="description" content="Protopian futures through peer-to-peer and protocol-for-protocol coordination. Where punk meets protocol.">
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
|
||||
|
||||
:root {
|
||||
--black: #0a0a0a;
|
||||
--off-black: #111111;
|
||||
--dark: #1a1a1a;
|
||||
--mid: #2a2a2a;
|
||||
--grey: #666;
|
||||
--light: #ccc;
|
||||
--white: #f0f0f0;
|
||||
--acid: #c8ff00;
|
||||
--cyan: #00ffd5;
|
||||
--magenta: #ff2d6f;
|
||||
--orange: #ff6b2b;
|
||||
--glow: rgba(200, 255, 0, 0.15);
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--acid) var(--black);
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--black);
|
||||
color: var(--white);
|
||||
font-family: 'Space Grotesk', sans-serif;
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Noise overlay */
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
/* Scanlines */
|
||||
body::after {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent,
|
||||
transparent 2px,
|
||||
rgba(0,0,0,0.03) 2px,
|
||||
rgba(0,0,0,0.03) 4px
|
||||
);
|
||||
pointer-events: none;
|
||||
z-index: 9998;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--acid);
|
||||
text-decoration: none;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--cyan);
|
||||
text-shadow: 0 0 10px var(--cyan);
|
||||
}
|
||||
|
||||
/* ─── HEADER ─── */
|
||||
header {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.grid-bg {
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background-image:
|
||||
linear-gradient(var(--mid) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--mid) 1px, transparent 1px);
|
||||
background-size: 60px 60px;
|
||||
opacity: 0.15;
|
||||
animation: gridShift 20s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes gridShift {
|
||||
0% { transform: translate(0, 0); }
|
||||
100% { transform: translate(60px, 60px); }
|
||||
}
|
||||
|
||||
.hero-glow {
|
||||
position: absolute;
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
animation: pulse 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
|
||||
50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
|
||||
}
|
||||
|
||||
.logo {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.logo h1 {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: clamp(2.5rem, 8vw, 6rem);
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
line-height: 1;
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.logo h1 .proto {
|
||||
color: var(--acid);
|
||||
text-shadow: 0 0 30px rgba(200, 255, 0, 0.4);
|
||||
}
|
||||
|
||||
.logo h1 .punk {
|
||||
color: var(--magenta);
|
||||
text-shadow: 0 0 30px rgba(255, 45, 111, 0.4);
|
||||
}
|
||||
|
||||
.logo h1 .dot {
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
.logo h1 .salon {
|
||||
color: var(--cyan);
|
||||
text-shadow: 0 0 30px rgba(0, 255, 213, 0.3);
|
||||
}
|
||||
|
||||
.tagline {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: clamp(0.85rem, 2vw, 1.1rem);
|
||||
color: var(--grey);
|
||||
margin-top: 1.5rem;
|
||||
letter-spacing: 0.15em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
font-size: clamp(1rem, 2.5vw, 1.4rem);
|
||||
color: var(--light);
|
||||
margin-top: 2rem;
|
||||
max-width: 700px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.scroll-indicator {
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
z-index: 2;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.75rem;
|
||||
color: var(--grey);
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
animation: bob 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.scroll-indicator::after {
|
||||
content: '↓';
|
||||
display: block;
|
||||
font-size: 1.2rem;
|
||||
margin-top: 0.5rem;
|
||||
color: var(--acid);
|
||||
}
|
||||
|
||||
@keyframes bob {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(8px); }
|
||||
}
|
||||
|
||||
/* ─── NAV ─── */
|
||||
nav {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
background: rgba(10, 10, 10, 0.9);
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom: 1px solid var(--mid);
|
||||
padding: 1rem 2rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
nav a {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: var(--grey);
|
||||
padding: 0.25rem 0;
|
||||
border-bottom: 1px solid transparent;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: var(--acid);
|
||||
border-bottom-color: var(--acid);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/* ─── SECTIONS ─── */
|
||||
section {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 6rem 2rem;
|
||||
}
|
||||
|
||||
.section-label {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.3em;
|
||||
text-transform: uppercase;
|
||||
color: var(--acid);
|
||||
margin-bottom: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.section-label::before {
|
||||
content: '';
|
||||
width: 30px;
|
||||
height: 1px;
|
||||
background: var(--acid);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-family: 'Space Grotesk', sans-serif;
|
||||
font-size: clamp(1.8rem, 4vw, 2.8rem);
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 1.1rem;
|
||||
color: var(--cyan);
|
||||
margin-bottom: 1rem;
|
||||
margin-top: 2.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--light);
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: var(--acid);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.divider {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, var(--mid), transparent);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ─── MANIFESTO ─── */
|
||||
.manifesto-block {
|
||||
border-left: 2px solid var(--magenta);
|
||||
padding-left: 1.5rem;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.manifesto-block p {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 300;
|
||||
color: var(--white);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* ─── PILLARS ─── */
|
||||
.pillars {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.pillar {
|
||||
background: var(--off-black);
|
||||
border: 1px solid var(--mid);
|
||||
padding: 2rem;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.pillar:hover {
|
||||
border-color: var(--acid);
|
||||
box-shadow: 0 0 20px rgba(200, 255, 0, 0.05);
|
||||
}
|
||||
|
||||
.pillar-icon {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.pillar h3 {
|
||||
margin-top: 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.pillar p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--grey);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* ─── PROTOCOL TYPES ─── */
|
||||
.protocol-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.protocol-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
.protocol-card {
|
||||
position: relative;
|
||||
padding: 2rem;
|
||||
background: var(--off-black);
|
||||
border: 1px solid var(--mid);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.protocol-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
.protocol-card.p2p::before {
|
||||
background: linear-gradient(90deg, var(--acid), transparent);
|
||||
}
|
||||
|
||||
.protocol-card.p4p::before {
|
||||
background: linear-gradient(90deg, var(--cyan), transparent);
|
||||
}
|
||||
|
||||
.protocol-card h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.protocol-card .label {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
color: var(--grey);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.protocol-card p {
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* ─── NETWORK ─── */
|
||||
.network-links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.5rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.network-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1.5rem;
|
||||
padding: 1.5rem 2rem;
|
||||
background: var(--off-black);
|
||||
border: 1px solid var(--mid);
|
||||
transition: all 0.3s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.network-link:hover {
|
||||
border-color: var(--acid);
|
||||
transform: translateX(4px);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.network-link .arrow {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 1.5rem;
|
||||
color: var(--acid);
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.network-link:hover .arrow {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.network-link .link-info h3 {
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.network-link .link-info p {
|
||||
margin: 0.25rem 0 0;
|
||||
font-size: 0.85rem;
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
.network-link .link-url {
|
||||
margin-left: auto;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.75rem;
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.network-link { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
|
||||
.network-link .link-url { margin-left: 0; }
|
||||
}
|
||||
|
||||
/* ─── TERMINAL BLOCK ─── */
|
||||
.terminal {
|
||||
background: var(--off-black);
|
||||
border: 1px solid var(--mid);
|
||||
margin: 2rem 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.terminal-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.75rem 1rem;
|
||||
background: var(--dark);
|
||||
border-bottom: 1px solid var(--mid);
|
||||
}
|
||||
|
||||
.terminal-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.terminal-dot.red { background: #ff5f56; }
|
||||
.terminal-dot.yellow { background: #ffbd2e; }
|
||||
.terminal-dot.green { background: #27c93f; }
|
||||
|
||||
.terminal-body {
|
||||
padding: 1.5rem;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.8;
|
||||
color: var(--light);
|
||||
}
|
||||
|
||||
.terminal-body .prompt {
|
||||
color: var(--acid);
|
||||
}
|
||||
|
||||
.terminal-body .comment {
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
.terminal-body .cmd {
|
||||
color: var(--cyan);
|
||||
}
|
||||
|
||||
/* ─── FOOTER ─── */
|
||||
footer {
|
||||
border-top: 1px solid var(--mid);
|
||||
padding: 3rem 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer p {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.75rem;
|
||||
color: var(--grey);
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
footer .footer-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-top: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
footer .footer-links a {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
/* ─── GLITCH EFFECT ─── */
|
||||
.glitch {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.glitch::before,
|
||||
.glitch::after {
|
||||
content: attr(data-text);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.glitch::before {
|
||||
animation: glitch-1 2s infinite linear alternate-reverse;
|
||||
clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
|
||||
color: var(--cyan);
|
||||
}
|
||||
|
||||
.glitch::after {
|
||||
animation: glitch-2 3s infinite linear alternate-reverse;
|
||||
clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
|
||||
color: var(--magenta);
|
||||
}
|
||||
|
||||
@keyframes glitch-1 {
|
||||
0%, 95% { transform: translateX(0); }
|
||||
96% { transform: translateX(-2px); }
|
||||
97% { transform: translateX(2px); }
|
||||
98% { transform: translateX(-1px); }
|
||||
99% { transform: translateX(1px); }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
|
||||
@keyframes glitch-2 {
|
||||
0%, 93% { transform: translateX(0); }
|
||||
94% { transform: translateX(2px); }
|
||||
95% { transform: translateX(-2px); }
|
||||
96% { transform: translateX(1px); }
|
||||
97% { transform: translateX(-1px); }
|
||||
98% { transform: translateX(2px); }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
|
||||
/* ─── RESPONSIVE ─── */
|
||||
@media (max-width: 480px) {
|
||||
section { padding: 4rem 1.25rem; }
|
||||
nav { gap: 1rem; padding: 0.75rem 1rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- ─── HERO ─── -->
|
||||
<header>
|
||||
<div class="grid-bg"></div>
|
||||
<div class="hero-glow"></div>
|
||||
<div class="logo">
|
||||
<h1 class="glitch" data-text="PROTOPUNK.SALON">
|
||||
<span class="proto">PROTO</span><span class="punk">PUNK</span><span class="dot">.</span><span class="salon">SALON</span>
|
||||
</h1>
|
||||
</div>
|
||||
<p class="tagline">The Punk Emergence of Protocols</p>
|
||||
<p class="subtitle">
|
||||
Building protopian futures through peer-to-peer coordination,
|
||||
protocol-for-protocol reciprocity, and the radical act of
|
||||
designing systems that serve the commons.
|
||||
</p>
|
||||
<div class="scroll-indicator">Explore</div>
|
||||
</header>
|
||||
|
||||
<!-- ─── NAV ─── -->
|
||||
<nav>
|
||||
<a href="#manifesto">Manifesto</a>
|
||||
<a href="#protocols">Protocols</a>
|
||||
<a href="#pillars">Pillars</a>
|
||||
<a href="#network">Network</a>
|
||||
<a href="#build">Build</a>
|
||||
</nav>
|
||||
|
||||
<!-- ─── MANIFESTO ─── -->
|
||||
<section id="manifesto">
|
||||
<div class="section-label">001 — Manifesto</div>
|
||||
<h2>Protocols Are the New Punk</h2>
|
||||
|
||||
<div class="manifesto-block">
|
||||
<p>
|
||||
The most radical act in a captured world isn't smashing the machine—it's
|
||||
building a better one. Open, forkable, unstoppable. <span class="highlight">Protocols
|
||||
are the instruments</span>. We are the ensemble.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Punk was never just an aesthetic—it was a stance. DIY over gatekeepers. Direct
|
||||
action over permission. The protopunk movement carries that ethos forward into the
|
||||
substrate layer of civilization itself: <em>the protocols we build to coordinate with
|
||||
each other</em>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
We reject both techno-utopianism and doomer paralysis. Instead, we pursue
|
||||
<span class="highlight">protopia</span>—not a perfect future, but a direction.
|
||||
Incremental, iterative, protocol-driven improvement. Each commit, each handshake,
|
||||
each peer connection is a vote for the world we're building.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Where cyberpunks warned us about corporate capture of the net, protopunks are
|
||||
writing the escape routes. Not exit—but <em>voice</em>, encoded in
|
||||
composable, interoperable, living protocols that no single entity can own.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- ─── PROTOCOLS ─── -->
|
||||
<section id="protocols">
|
||||
<div class="section-label">002 — Protocol Modes</div>
|
||||
<h2>P2P & P4P: Two Faces of Coordination</h2>
|
||||
|
||||
<p>
|
||||
Protocols don't just move data—they encode relationships. The future of
|
||||
coordination lives in two complementary modes, each unlocking capacities that
|
||||
centralized systems structurally cannot.
|
||||
</p>
|
||||
|
||||
<div class="protocol-grid">
|
||||
<div class="protocol-card p2p">
|
||||
<div class="label">Peer-to-Peer</div>
|
||||
<h3>P2P — Direct Sovereignty</h3>
|
||||
<p>
|
||||
No intermediaries. No rent-seeking middlemen. P2P protocols restore agency
|
||||
to the edges of the network. From IPFS to Holepunch, from Secure Scuttlebutt
|
||||
to libp2p—the stack is maturing. Every node is both client and server.
|
||||
Every participant is a peer.
|
||||
</p>
|
||||
</div>
|
||||
<div class="protocol-card p4p">
|
||||
<div class="label">Protocol-for-Protocol</div>
|
||||
<h3>P4P — Symbiotic Stacking</h3>
|
||||
<p>
|
||||
Protocols that nourish other protocols. Composability as mutualism. When identity
|
||||
layers feed into reputation systems that inform governance modules—that's
|
||||
P4P. Not competition between standards, but an ecology where protocols co-evolve
|
||||
and cross-pollinate.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3>The Protocol Stack Is a Living System</h3>
|
||||
<p>
|
||||
Think of protocols not as rigid specifications, but as <span class="highlight">mycelial
|
||||
networks</span>—growing, branching, connecting disparate systems into something
|
||||
greater than the sum of their parts. The <a href="https://mycostack.xyz"
|
||||
target="_blank" rel="noopener">MycoStack</a> framework models exactly this:
|
||||
infrastructure as ecology, coordination as symbiosis.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
When we design protocols that are open, forkable, and composable, we create the
|
||||
conditions for emergence. Not top-down planning, but bottom-up evolution. This is
|
||||
how complex systems actually work—and it's how we build resilient futures.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- ─── PILLARS ─── -->
|
||||
<section id="pillars">
|
||||
<div class="section-label">003 — Pillars</div>
|
||||
<h2>Foundations of the Protopian Stack</h2>
|
||||
|
||||
<div class="pillars">
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">⚡</span>
|
||||
<h3>Radical Openness</h3>
|
||||
<p>Open source, open protocols, open data. If it can't be forked, it can't be trusted. Transparency is the baseline, not the aspiration.</p>
|
||||
</div>
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">🌐</span>
|
||||
<h3>Edge Sovereignty</h3>
|
||||
<p>Power at the periphery. Self-hosting, local-first data, user-owned identity. The network serves the nodes, never the reverse.</p>
|
||||
</div>
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">🍄</span>
|
||||
<h3>Mycelial Design</h3>
|
||||
<p>Composable, interconnected, resilient. Protocols as living systems that grow, adapt, and form symbiotic relationships across domains.</p>
|
||||
</div>
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">🔁</span>
|
||||
<h3>Regenerative Loops</h3>
|
||||
<p>Value flows back to contributors. Protocols that extract without returning are dead protocols. Sustainability is a design constraint.</p>
|
||||
</div>
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">🛡️</span>
|
||||
<h3>Credible Neutrality</h3>
|
||||
<p>Protocols should not discriminate. No privileged participants, no hidden advantages. The rules are the rules, readable by anyone.</p>
|
||||
</div>
|
||||
<div class="pillar">
|
||||
<span class="pillar-icon">🧬</span>
|
||||
<h3>Emergent Governance</h3>
|
||||
<p>Governance that evolves with the community. Not fixed constitutions, but adaptive systems that learn from their own outputs.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- ─── NETWORK ─── -->
|
||||
<section id="network">
|
||||
<div class="section-label">004 — Network</div>
|
||||
<h2>The Constellation</h2>
|
||||
|
||||
<p>
|
||||
Protopunk doesn't exist in isolation. It's a node in a growing network of
|
||||
projects, frameworks, and communities building toward protopian coordination.
|
||||
</p>
|
||||
|
||||
<div class="network-links">
|
||||
<a href="https://theopenmachine.net" target="_blank" rel="noopener" class="network-link">
|
||||
<span class="arrow">→</span>
|
||||
<div class="link-info">
|
||||
<h3>The Open Machine</h3>
|
||||
<p>The infrastructure of open coordination. Machinery for collective intelligence, designed to be owned by no one and used by everyone.</p>
|
||||
</div>
|
||||
<span class="link-url">theopenmachine.net</span>
|
||||
</a>
|
||||
|
||||
<a href="https://mycostack.xyz" target="_blank" rel="noopener" class="network-link">
|
||||
<span class="arrow">→</span>
|
||||
<div class="link-info">
|
||||
<h3>MycoStack</h3>
|
||||
<p>Protocol ecology modeled on mycelial networks. Composable infrastructure layers that grow, interconnect, and sustain the commons.</p>
|
||||
</div>
|
||||
<span class="link-url">mycostack.xyz</span>
|
||||
</a>
|
||||
|
||||
<a href="https://atlasresear.ch" target="_blank" rel="noopener" class="network-link">
|
||||
<span class="arrow">→</span>
|
||||
<div class="link-info">
|
||||
<h3>Atlas Research</h3>
|
||||
<p>Mapping the frontiers. Research into coordination mechanisms, token engineering, and the science of decentralized systems.</p>
|
||||
</div>
|
||||
<span class="link-url">atlasresear.ch</span>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- ─── BUILD ─── -->
|
||||
<section id="build">
|
||||
<div class="section-label">005 — Build</div>
|
||||
<h2>Join the Session</h2>
|
||||
|
||||
<p>
|
||||
A salon is a gathering—a space where ideas collide, recombine, and emerge
|
||||
as something new. Protopunk.salon is an open invitation to build, critique, fork,
|
||||
and remix the protocols that shape our collective future.
|
||||
</p>
|
||||
|
||||
<div class="terminal">
|
||||
<div class="terminal-header">
|
||||
<span class="terminal-dot red"></span>
|
||||
<span class="terminal-dot yellow"></span>
|
||||
<span class="terminal-dot green"></span>
|
||||
</div>
|
||||
<div class="terminal-body">
|
||||
<span class="comment"># the protopunk stack</span><br>
|
||||
<span class="prompt">$</span> <span class="cmd">git clone</span> the-commons --recursive<br>
|
||||
<span class="prompt">$</span> <span class="cmd">fork</span> what-doesnt-serve-you<br>
|
||||
<span class="prompt">$</span> <span class="cmd">compose</span> protocols.p2p + protocols.p4p<br>
|
||||
<span class="prompt">$</span> <span class="cmd">deploy</span> --to the-edges --with solidarity<br>
|
||||
<span class="prompt">$</span> <span class="cmd">iterate</span> toward protopia<br>
|
||||
<br>
|
||||
<span class="comment"># no kings. no landlords. just protocols.</span><br>
|
||||
<span class="comment"># the future is peer-to-peer.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
The salon is open. The protocols are waiting to be written.
|
||||
<span class="highlight">The only permission you need is your own.</span>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- ─── FOOTER ─── -->
|
||||
<footer>
|
||||
<p>PROTOPUNK.SALON — Protocols for Protopian Futures</p>
|
||||
<div class="footer-links">
|
||||
<a href="https://theopenmachine.net" target="_blank" rel="noopener">The Open Machine</a>
|
||||
<a href="https://mycostack.xyz" target="_blank" rel="noopener">MycoStack</a>
|
||||
<a href="https://atlasresear.ch" target="_blank" rel="noopener">Atlas Research</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue