main #8

Closed
limepotato wants to merge 183 commits from main into blog-drafts
Showing only changes of commit d77023ce97 - Show all commits

View file

@ -4,37 +4,39 @@ const ntfyButton = document.getElementById("ntfy-send");
// Random placeholder // Random placeholder
function getPlaceholder() { function getPlaceholder() {
placeholderSelector = (Math.floor(Math.random()*8) +1); placeholderSelector = Math.floor(Math.random() * 8) + 1;
switch(placeholderSelector) { switch (placeholderSelector) {
case 1: case 1:
ntfyInput.placeholder='hi nelle! (。><。)'; ntfyInput.placeholder = "hi nelle! (。><。)";
break; break;
case 2: case 2:
ntfyInput.placeholder='(╹◡╹)凸'; ntfyInput.placeholder = "(╹◡╹)凸";
break; break;
case 3: case 3:
ntfyInput.placeholder='Confession of sin: I dont like SciAdv'; ntfyInput.placeholder = "Confession of sin: I dont like SciAdv";
break; break;
case 4: case 4:
ntfyInput.placeholder='Knock Knock...'; ntfyInput.placeholder = "Knock Knock...";
break; break;
case 5: case 5:
ntfyInput.placeholder='El. Psy. Kongroo.'; ntfyInput.placeholder = "El. Psy. Kongroo.";
break; break;
case 6: case 6:
ntfyInput.placeholder='the organization is after you.'; ntfyInput.placeholder = "the organization is after you.";
break; break;
case 7: case 7:
ntfyInput.placeholder='you wouldnt happen to know where an IBN5100 is, would you?'; ntfyInput.placeholder =
break; "you wouldnt happen to know where an IBN5100 is, would you?";
break;
case 8: case 8:
ntfyInput.placeholder='if you had to choose, between: bacon, unlimited bacon, but no games. or. games. unlimited games, but no games. which would you pick?'; ntfyInput.placeholder =
break; "if you had to choose, between: bacon, unlimited bacon, but no games. or. games. unlimited games, but no games. which would you pick?";
break;
case 9: case 9:
ntfyInput.placeholder='time travel?'; ntfyInput.placeholder = "time travel?";
break; break;
default: default:
ntfyInput.placeholder='type some words and hit send'; ntfyInput.placeholder = "type some words and hit send";
} }
} }