core
-Backend API for the CipherDolls platform: wallet-signature auth, AI chat completions, TTS/STT, embeddings (pgvector), USDC payments on Base, and IoT device management over MQTT.
+The brain of the platform: one backend that handles chat, voice, memory, payments and the connection to the physical dolls.
@@ -37,7 +37,7 @@server
-Minimal chat backend derived from core, stripped to the essentials: chat with a Character, optional TTS/STT — same architecture, no payments or IoT.
+A slimmed-down core for anyone who just wants to chat with a character — the same architecture, none of the complexity.
@@ -46,7 +46,7 @@webapp
-Web frontend for the platform.
+The web face of CipherDolls — where you meet the characters.
@@ -55,7 +55,7 @@stream-player
-TTS audio streaming proxy — subscribes to Redis Pub/Sub and forwards audio chunks to WebSocket clients with a compact binary protocol.
+Voices need to arrive instantly. This streams the AI's speech to your browser the moment it is generated.
@@ -64,7 +64,7 @@stream-recorder
-WebSocket audio ingestion microservice — accepts raw WAV streams, converts to MP3 in-memory via ffmpeg, forwards to the backend.
+The listening half: your voice streams in, gets converted on the fly, and lands with the AI.
@@ -73,7 +73,7 @@firmware-watcher
-ESP-IDF firmware for the SenseCAP Watcher companion device: BLE WiFi provisioning, MQTT events, MP3 playback through the onboard codec, LVGL UI on a 412×412 display, deep sleep.
+The magic moment: a real device on your desk wakes up, connects, and speaks with the character's voice.
@@ -82,7 +82,7 @@firmware-m5sticks3
-ESP-IDF firmware for the M5StickS3 (ESP32-S3) pocket companion device with display, audio codec, and IMU.
+The pocket version: the same companion on a tiny stick with a display and a microphone.
@@ -96,13 +96,13 @@Decentralized apps — Gnosis Chain + Ethereum Swarm
-dApps with on-chain logic and censorship-resistant Swarm storage/hosting.
+Can the web run without servers? These apps are my experiments in building things that nobody can switch off.
SwarmChat
-Decentralized 1:1 messenger and WebRTC video calling: wallet identity, on-chain contact registry, encrypted messages over Swarm PSS with feeds as offline outbox. Live at swarmchat.eth.
+I was thinking about how cool it would be to have a web3-based chat system. Is it possible to communicate without any servers? With Swarm, a decentralised technology, this is now possible — messages travel encrypted through the network itself, and your wallet is your identity.
@@ -111,7 +111,7 @@Pink Chainsaw
-Decentralized imageboard: post images, comment, and vote with xBZZ; fees auto-top-up the poster's Swarm postage stamp so good content stays alive. A social-score system prices posting by reputation.
+I wanted an imageboard where content can't just disappear. Images live on Swarm, and every post pays a little to keep them alive — good content earns you cheaper posting, bad content gets expensive.
@@ -120,7 +120,7 @@FreeeMarket
-Multi-vendor marketplace where anyone runs their own shop and gets paid in stablecoins through on-chain escrow — deliberately fee-free and VAT-free.
+Can you run a marketplace with no company behind it? Anyone opens a shop, buyers pay in stablecoins, and on-chain escrow replaces the middleman. Deliberately fee-free — a farmers' market for the internet.
@@ -129,7 +129,7 @@WalletMatrix
-Pivot-table view of a crypto wallet across every EVM chain — tokens as rows, chains as columns; drag one cell onto another to bridge or cross-chain swap. Static SPA deployable to Swarm.
+My tokens were scattered across a dozen chains and I could never see the whole picture. So I built a pivot table for your wallet: tokens as rows, chains as columns — drag a cell from one chain to another to bridge.
@@ -138,7 +138,7 @@swarm-connect
-React connect-button + wizard for Swarm on Gnosis: wallet → network → balances → Bee node → postage stamp, in one modal. Published on npm; demo hosted on Swarm itself.
+Every Swarm dApp I built needed the same onboarding dance: wallet, network, Bee node, postage stamp. So I packaged it once — a single React button that walks users through all of it.
@@ -147,7 +147,7 @@opentab
-Onchain app bootstrapped with create-onchain (Base).
+An experiment with onchain apps on Base.
@@ -161,13 +161,13 @@AI on GPU — self-hosted speech services
-Dockerized speech AI for NVIDIA GPUs, tuned for the RTX 5090 / Blackwell generation.
+I wanted my projects to hear and speak without sending a single word to the cloud — so these run on my own GPU.
whisper-cuda
-OpenAI-Whisper-compatible ASR web service built for RTX 5090 (sm_120) — faster-whisper on CTranslate2/CUDA 12.8, no PyTorch.
+Speech-to-text on my own GPU: no cloud, no per-minute pricing. Whisper packaged for the RTX 5090 so anything in my homelab can transcribe audio locally.
@@ -176,7 +176,7 @@kokoro-cuda
-Minimal Kokoro TTS API with CUDA: 49 voices in 9 languages, streaming WAV/PCM plus MP3/Opus/FLAC, web UI included.
+Giving my projects a voice: a small self-hosted TTS service with 49 voices in 9 languages, fast enough to stream. Type text, hear it instantly.
@@ -185,7 +185,7 @@voxtral-cuda
-Text-to-speech service running Mistral's Voxtral-4B-TTS with CUDA acceleration via vLLM-Omni.
+The newest open speech models are amazing but heavy. This runs Mistral's Voxtral on a local GPU, so state-of-the-art speech stays in my own house.
@@ -204,7 +204,7 @@stakingtracker
-Self-hosted ETH staking rewards tracker and tax-report generator — reads from your own beacon node, persists daily history to SQLite, no external APIs or keys.
+Tax season with an ETH validator used to mean paid APIs and spreadsheets. Now my own beacon node does the work: a small self-hosted app that records rewards daily and prints the tax report.
diff --git a/styles.css b/styles.css index 4643f63..275225f 100644 --- a/styles.css +++ b/styles.css @@ -6,7 +6,7 @@ --accent: #58a6ff; --border: #30363d; --tag-bg: #1f2630; - --radius: 10px; + --radius: 12px; --maxw: 64rem; } @@ -29,7 +29,7 @@ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--fg); background: var(--bg); - line-height: 1.6; + line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } @@ -43,7 +43,7 @@ body { /* Header */ .site-header { - padding: 2.5rem 0 1.5rem; + padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); } .site-title { @@ -61,21 +61,23 @@ body { /* Sections */ .section { - padding: 2rem 0 0.5rem; + padding: 2.75rem 0 1rem; scroll-margin-top: 1rem; } -.section-head { margin-bottom: 1.25rem; } +.section-head { margin-bottom: 1.75rem; } .section-title { - font-size: clamp(1.15rem, 2.5vw, 1.5rem); - margin: 0 0 0.35rem; + font-size: clamp(1.2rem, 2.5vw, 1.6rem); + margin: 0 0 0.6rem; letter-spacing: -0.01em; font-weight: 700; } -.section-desc { - margin: 0 0 0.4rem; +.section-lede { + margin: 0 0 0.6rem; color: var(--muted); - font-size: 0.95rem; - max-width: 48rem; + font-size: 1.05rem; + max-width: 46rem; + font-style: italic; + line-height: 1.65; } .section-link { color: var(--accent); @@ -88,8 +90,8 @@ body { /* Cards grid */ .cards { display: grid; - grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); - gap: 1rem; + grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); + gap: 1.25rem; } .card { @@ -98,59 +100,61 @@ body { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); - padding: 1.1rem 1.15rem 1.15rem; - transition: border-color 0.15s ease, transform 0.15s ease; + padding: 1.5rem 1.4rem 1.4rem; + transition: border-color 0.15s ease; } .card:hover { border-color: var(--accent); } .card:focus-within { border-color: var(--accent); } .card-name { - margin: 0 0 0.5rem; + margin: 0 0 0.75rem; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; } -.card-desc { - margin: 0 0 0.85rem; - color: var(--muted); - font-size: 0.92rem; +.card-story { + margin: 0 0 1.1rem; + color: var(--fg); + font-size: 1.02rem; + line-height: 1.65; flex: 1 1 auto; } -/* Tags */ +/* Tags — small, muted detail */ .tags { list-style: none; - margin: 0 0 0.9rem; + margin: 0 0 0.85rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; } .tags li { - font-size: 0.75rem; + font-size: 0.7rem; line-height: 1.4; color: var(--muted); background: var(--tag-bg); border: 1px solid var(--border); border-radius: 999px; - padding: 0.12rem 0.55rem; + padding: 0.1rem 0.5rem; white-space: nowrap; + opacity: 0.85; } -/* Card link */ +/* Card link — subtle, sits below the story */ .card-link { align-self: flex-start; - color: var(--accent); + color: var(--muted); text-decoration: none; - font-size: 0.9rem; - font-weight: 600; + font-size: 0.82rem; + font-weight: 500; } -.card-link:hover { text-decoration: underline; } +.card-link:hover { color: var(--accent); text-decoration: underline; } /* Footer */ .site-footer { - margin-top: 2.5rem; - padding: 1.5rem 0 2rem; + margin-top: 3rem; + padding: 1.75rem 0 2.25rem; border-top: 1px solid var(--border); } .footer-links { @@ -185,6 +189,6 @@ a:focus-visible { .cards { grid-template-columns: 1fr; } - .site-header { padding: 1.75rem 0 1rem; } - .section { padding: 1.5rem 0 0.25rem; } + .site-header { padding: 2rem 0 1.25rem; } + .section { padding: 2rem 0 0.5rem; } } \ No newline at end of file