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();