It was super easy to edit this carrd site

linkbolditalicunderlinestrike

This is just my own personal sandbox that will eventually become it's own lightweight, indie dev feel without the constant update of static formatting.

Let's be neighbours, maybe?

90s-kid.crd.co

derpy gibuu corner
placeholder
placeholder
placeholder
placeholder
Chattable
Status Cafe
blinkies.cafe
on DeviantArt
derpy gibuu corner
placeholder
placeholder
placeholder
placeholder
Chattable
Status Cafe
blinkies.cafe
on DeviantArt
Last updated: March 28, 2026. it's fun using sites like designfreaks.net, browserpad.org, imagecolorpicker.com

Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

Sign Guestbook

Display
Loading…
// ══════════════════════════════════════════════════════════════ // πŸ”₯ SAME config and DB_PATH as editor.html β€” keep them in sync! // ══════════════════════════════════════════════════════════════ const firebaseConfig = { apiKey: "AIzaSyCf0BfzOsivrDPsa4tvI1t4aGhrrSpGfAI", authDomain: "fir-kid-blog.firebaseapp.com", projectId: "fir-kid-blog", storageBucket: "fir-kid-blog.firebasestorage.app", messagingSenderId: "101318761010", appId: "1:101318761010:web:f025860f0a0cb3a10d3a2b" }; const DB_PATH = 'content/page1'; // Must match editor.html! // ══════════════════════════════════════════════════════════════ firebase.initializeApp(firebaseConfig); const content = document.getElementById('content'); // Real-time listener β€” iframe updates the moment you save in the editor firebase.database().ref(DB_PATH).on('value', snap => { const val = snap.val(); content.innerHTML = (val && val.html) ? val.html : '

Nothing here yet.

'; });