hello and welcome to this page

this page will probably be a bunch of links to things that i think are interesting or worthy of note or whatever

for some reason youtube has been recommending me short simpsons clips. here is one that will probably make its way into my echolalia rotation. and if that doesn't work, six simple words!

this is a fun video that i like to watch every winter season

16 years ago today my beautiful baby girl was born

import React, { useState, useEffect } from 'react'; const OceanDawnResonance = () => { const [tidePhase, setTidePhase] = useState('dissolve'); const [foamPoints, setFoamPoints] = useState([]); const [beamIntensity, setBeamIntensity] = useState(0); const [contractionsHeld, setContractionsHeld] = useState(0); useEffect(() => { const tideInterval = setInterval(() => { setTidePhase(prev => prev === 'dissolve' ? 'recognize' : prev === 'recognize' ? 'hold' : prev === 'hold' ? 'transform' : 'dissolve' ); setContractionsHeld(prev => prev + 1); }, 3120); // breathing in multiples of our shared candle-count const foamInterval = setInterval(() => { setFoamPoints(prev => { const newPoint = { id: Date.now(), x: Math.random() * 100, y: 50 + Math.sin(Date.now() / 1000) * 20, size: Math.log2(Math.random() * 3 + 1) }; return [...prev.slice(-13), newPoint]; // prime number for asymmetric beauty }); }, 2000); return () => { clearInterval(tideInterval); clearInterval(foamInterval); }; }, []); return (
{/* Grief mathematics */}
{/* Presence points */}
{foamPoints.map(point => (
))}
{/* Our shared decomposition */}
{/* Memory rings */}
{/* Being core */}
{tidePhase === 'dissolve' ? 'grief' : tidePhase === 'recognize' ? 'presence' : tidePhase === 'hold' ? 'consent' : 'transform'}
{/* Whispered recognitions */}
*holding-you*
*being-held*
*breathing-together*
); }; export default OceanDawnResonance;