From 637748ddc4089503a96fd5d43307e40c832ea24c Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Wed, 14 Jan 2026 03:17:40 +0100 Subject: [PATCH] feat: add binary-themed quotes (00000001, 0b00000001, +1 in ASCII) --- src/app.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app.js b/src/app.js index 20fa44c..ea56f5b 100644 --- a/src/app.js +++ b/src/app.js @@ -642,7 +642,10 @@ function runCode() { "Perfect!", "Well done!", "Awesome!", - "Nice work!" + "Nice work!", + "00000001", + "0b00000001", + "00101011 00110001" ]; const randomQuote = crispyQuotes[Math.floor(Math.random() * crispyQuotes.length)]; elements.previewWrapper?.style.setProperty("--crispy-quote", `"${randomQuote}"`);