From 9579f814c5940c23dc68b0db6cee2f9f77fc5779 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Mon, 2 Mar 2026 12:14:00 -0500 Subject: [PATCH] fix: remove adult content to prevent site flagging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replaced profane words with family-friendly alternatives: - 'clusterfuck' → 'mess' - 'fuckups' → 'incidents' - 'bullshit' → 'questionable' - 'shit' → removed or replaced - Updated CSS class names from 'shit-list' to 'blame-list' - Removed encouragement to use profanity in form placeholder - Updated JavaScript variable names and text content - Maintained humorous tone while making site family-friendly - Should prevent adult content filters from flagging the site --- www/index.html | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/www/index.html b/www/index.html index e4912ce..2ce8a12 100644 --- a/www/index.html +++ b/www/index.html @@ -220,24 +220,24 @@ border-radius: 5px; transition: width 0.5s ease; } - .shit-list { + .blame-list { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--terminal-green); } - .shit-list-title { + .blame-list-title { color: var(--terminal-yellow); font-weight: bold; margin-bottom: 10px; font-size: 1.1em; } - .shit-item { + .blame-item { padding: 8px 0; border-bottom: 1px dashed rgba(0, 255, 0, 0.3); color: var(--terminal-text); font-size: 0.9em; } - .shit-item:last-child { + .blame-item:last-child { border-bottom: none; } .footer { @@ -480,12 +480,12 @@
🤦‍♂️

IT'S DUSTIN'S FAULT

Official Corporate Blame Allocation System
-
Because someone has to take responsibility for this clusterfuck
+
Because someone has to take responsibility for this mess
-
Total Fuckups Blamed on Dustin
-
1,247
+
Total Incidents Blamed on Dustin
+
1,247
@@ -498,7 +498,7 @@
Dustin's Apologies Generated
42
-
(All of them bullshit)
+
(All of them questionable)
Hours Wasted Blaming Dustin
@@ -519,13 +519,13 @@
-
-
Dustin's Greatest Hits (Recent Fuckups):
-
Spilled coffee on the CEO's laptop during board meeting
-
Accidentally deleted the entire customer database (twice)
-
Set the office thermostat to "Sahara Desert" mode
-
Replied-all to company-wide email with "who gives a shit?"
-
Scheduled server maintenance for Christmas Day
+
+
Dustin's Greatest Hits (Recent Incidents):
+
Spilled coffee on the CEO's laptop during board meeting
+
Accidentally deleted the entire customer database (twice)
+
Set the office thermostat to "Sahara Desert" mode
+
Replied-all to company-wide email with questionable content
+
Scheduled server maintenance for Christmas Day
- +
@@ -551,9 +551,9 @@
DUSTIN'S APOLOGY GENERATOR™
- Click below to generate a fresh bullshit apology from Dustin... + Click below to generate a fresh questionable apology from Dustin...
- +
Sincerity Level: 0%
@@ -584,7 +584,7 @@ const clearLogBtn = document.getElementById('clear-log'); const soundToggle = document.getElementById('sound-toggle'); const logContainer = document.getElementById('log'); - const totalFuckups = document.getElementById('total-fuckups'); + const totalIncidents = document.getElementById('total-incidents'); const apologiesCount = document.getElementById('apologies-count'); const hoursWasted = document.getElementById('hours-wasted'); const apologyDisplay = document.getElementById('apology-display'); @@ -593,7 +593,7 @@ // State let soundEnabled = true; - let fuckupCount = 1247; + let incidentCount = 1247; let apologyCount = 42; let hoursCount = 3728; @@ -694,7 +694,7 @@ } // Update stats - fuckupCount++; + incidentCount++; hoursCount += Math.floor(Math.random() * 5) + 1; updateStats(); @@ -704,7 +704,7 @@ // Update statistics display function updateStats() { - totalFuckups.textContent = fuckupCount.toLocaleString(); + totalIncidents.textContent = incidentCount.toLocaleString(); apologiesCount.textContent = apologyCount; hoursWasted.textContent = hoursCount.toLocaleString(); } @@ -745,7 +745,7 @@ addIncident("Paradox detected: If Dustin is fired, who do we blame for firing Dustin?", 'apocalyptic'); // Update stats dramatically - fuckupCount += 1000; + incidentCount += 1000; hoursCount += 500; updateStats();