(function(){ const sentences = ["hewo i'm rashelle •ᴗ•","peep my socials here ♥"]; const el = document.getElementById("typewriter"); if(!el) return; const TYPING_MIN = 80, TYPING_MAX = 160, DELETING_MIN = 40, DELETING_MAX = 90; const PAUSE_AFTER_TYPE = 1200, PAUSE_AFTER_DELETE = 2200; let sentenceIndex = 0, charIndex = 0, forward = true, timeoutId = null; function rand(min,max){ return Math.floor(min + Math.random()*(max-min+1)); } function tick(){ if(timeoutId){ clearTimeout(timeoutId); timeoutId=null; } const current = sentences[sentenceIndex]; if(forward){ charIndex++; el.textContent = current.substring(0,charIndex); if(charIndex >= current.length){ timeoutId = setTimeout(()=>{ forward=false; tick(); }, PAUSE_AFTER_TYPE); return; } timeoutId = setTimeout(tick, rand(TYPING_MIN,TYPING_MAX)); } else { charIndex--; el.textContent = current.substring(0,charIndex); if(charIndex <= 0){ sentenceIndex = (sentenceIndex + 1) % sentences.length; forward = true; timeoutId = setTimeout(tick, PAUSE_AFTER_DELETE); return; } timeoutId = setTimeout(tick, rand(DELETING_MIN,DELETING_MAX)); } } timeoutId = setTimeout(tick, 250); })();
Discord Server Icon
toash nation! ୨୧
0 online · 186 total
join!
fetch('https://discord.com/api/guilds/566084495011217409/widget.json') .then(res => res.json()) .then(data => { if (data && typeof data.presence_count !== 'undefined') { document.getElementById('discord-online').textContent = data.presence_count; } }) .catch(err => console.log('Could not fetch Discord widget:', err));
click to play my favorite songs ^^
var songs = [ { src: "https://dl.dropbox.com/scl/fi/9188aq0r1cc52dl9r7amu/weston-super-mare-glaive.mp3?rlkey=yv77hb3hov2bnfe8ncvauib4r&st=n1ms3xv8&dl=0", title: "weston super mare - glaive" }, { src: "https://dl.dropbox.com/scl/fi/4lrv2xk1sh1aqpxglugw1/voice-Blush.mp3?rlkey=nwjslgtikw7t1r99b2845v6i1&st=tt6do1x1&dl=0", title: "voice - blush ʕ ꈍ᥍ꈍʔ" }, { src: "https://dl.dropbox.com/scl/fi/3ty44e2m1vh4gm39lxej1/toxic-whatsaheart.mp3?rlkey=vamrji2kyd1q86sury7iedtpy&st=mtzhza5s&dl=0", title: "toxic - whatsaheart" } ]; var currentSong = 0; var tune = document.getElementById('tune'); var titleEl = document.getElementById('songtitle'); tune.volume = 0.05; function fadeTitle(newText) { titleEl.style.opacity = '0'; setTimeout(function() { titleEl.textContent = newText; titleEl.style.opacity = '1'; }, 500); } function loadSong(index) { tune.src = songs[index].src; fadeTitle(songs[index].title); } tune.addEventListener('ended', function() { currentSong = (currentSong + 1) % songs.length; loadSong(currentSong); tune.play(); }); function togglePlay() { var playBtn = document.querySelector('.playy'); var pauseBtn = document.querySelector('.pausee'); if (tune.paused) { if (!tune.src || tune.src === window.location.href) { loadSong(currentSong); } else { fadeTitle(songs[currentSong].title); } tune.play(); playBtn.style.display = 'none'; pauseBtn.style.display = 'inline'; } else { tune.pause(); playBtn.style.display = 'inline'; pauseBtn.style.display = 'none'; fadeTitle(songs[currentSong].title); } }

toash nation 2026

click to play my favorite songs ^^
var songs = [ { src: "https://dl.dropbox.com/scl/fi/9188aq0r1cc52dl9r7amu/weston-super-mare-glaive.mp3?rlkey=yv77hb3hov2bnfe8ncvauib4r&st=n1ms3xv8&dl=0", title: "weston super mare - glaive" }, { src: "https://dl.dropbox.com/scl/fi/4lrv2xk1sh1aqpxglugw1/voice-Blush.mp3?rlkey=nwjslgtikw7t1r99b2845v6i1&st=tt6do1x1&dl=0", title: "voice - blush ʕ ꈍ᥍ꈍʔ" }, { src: "https://dl.dropbox.com/scl/fi/3ty44e2m1vh4gm39lxej1/toxic-whatsaheart.mp3?rlkey=vamrji2kyd1q86sury7iedtpy&st=mtzhza5s&dl=0", title: "toxic - whatsaheart" } ]; var currentSong = 0; var tune = document.getElementById('tune'); var titleEl = document.getElementById('songtitle'); tune.volume = 0.05; function fadeTitle(newText) { titleEl.style.opacity = '0'; setTimeout(function() { titleEl.textContent = newText; titleEl.style.opacity = '1'; }, 500); } function loadSong(index) { tune.src = songs[index].src; fadeTitle(songs[index].title); } tune.addEventListener('ended', function() { currentSong = (currentSong + 1) % songs.length; loadSong(currentSong); tune.play(); }); function togglePlay() { var playBtn = document.querySelector('.playy'); var pauseBtn = document.querySelector('.pausee'); if (tune.paused) { if (!tune.src || tune.src === window.location.href) { loadSong(currentSong); } else { fadeTitle(songs[currentSong].title); } tune.play(); playBtn.style.display = 'none'; pauseBtn.style.display = 'inline'; } else { tune.pause(); playBtn.style.display = 'inline'; pauseBtn.style.display = 'none'; fadeTitle(songs[currentSong].title); } }

toash nation 2026