feat: add binary-themed quotes (00000001, 0b00000001, +1 in ASCII)

This commit is contained in:
2026-01-14 03:17:40 +01:00
parent 18f6b6d8ab
commit 1fec205782

View File

@@ -642,7 +642,10 @@ function runCode() {
"Perfect!", "Perfect!",
"Well done!", "Well done!",
"Awesome!", "Awesome!",
"Nice work!" "Nice work!",
"00000001",
"0b00000001",
"00101011 00110001"
]; ];
const randomQuote = crispyQuotes[Math.floor(Math.random() * crispyQuotes.length)]; const randomQuote = crispyQuotes[Math.floor(Math.random() * crispyQuotes.length)];
elements.previewWrapper?.style.setProperty("--crispy-quote", `"${randomQuote}"`); elements.previewWrapper?.style.setProperty("--crispy-quote", `"${randomQuote}"`);