--
setTimeout(function () { const messages = [ "Start before you’re ready.", "Stop perfecting — start releasing.", "What would you say if you weren’t afraid?" ]; // Get Zurich date const now = new Date(); const opts = { timeZone: 'Europe/Zurich', year: 'numeric', month: '2-digit', day: '2-digit' }; const [d, m, y] = new Intl.DateTimeFormat('en-GB', opts).format(now).split('/'); const seedStr = `${y}-${m}-${d}`; // Create hash-based seed let seed = 0; for (let i = 0; i < seedStr.length; i++) { seed += seedStr.charCodeAt(i); } function mulberry32(a) { return function () { var t = a += 0x6D2B79F5; t = Math.imul(t ^ (t >>> 15), t | 1); t ^= t + Math.imul(t ^ (t >>> 7), t | 61); return ((t ^ (t >>> 14)) >>> 0) / 4294967296; } } const rng = mulberry32(seed); const index = Math.floor(rng() * messages.length); const el = document.getElementById("random-message"); if (el) el.textContent = messages[index]; }, 100);