This job I applied for had a little chat widget in the corner of the page called “job bot” that offered “AI application assistance”. I feel like I can use all the help I could get so I clicked it. It asked for my name and email address, then provided a link to the page I was already on. 

Bonus points: It was for an environmental conservation position 



No I will not welcome our new AI overlords.


You owe me $2500 for these three sentences, minus the intro which I give for free, and uploading a .CSV.
spoiler
`<!DOCTYPE html> <html> <head> <meta charset=“UTF-8”> <title>Temperature Dashboard</title>
<!-- Chart.js --> <script src=“https://cdn.jsdelivr.net/npm/chart.js”></script>
<!-- PapaParse for CSV parsing --> <script src=“https://cdn.jsdelivr.net/npm/papaparse@5.4.1/papaparse.min.js”></script>
<style> body { font-family: Arial, sans-serif; margin: 20px; background: #f5f7fa; }
h1 { text-align: center; }
.dashboard { max-width: 1200px; margin: auto; }
.metrics { display: flex; gap: 20px; margin-bottom: 20px; }
.metric-card { flex: 1; background: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
.metric-card h2 { margin: 0; font-size: 18px; color: #555; }
.metric-card p { font-size: 22px; font-weight: bold; margin: 5px 0 0; }
.filters { margin-bottom: 20px; }
table { width: 100%; border-collapse: collapse; background: white; margin-top: 20px; }
th, td { padding: 8px; border-bottom: 1px solid #ddd; text-align: center; }
th { cursor: pointer; background: #e9ecef; }
canvas { background: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } </style> </head>
<body>
<div class=“dashboard”> <h1>Temperature Dashboard</h1>
<input type=“file” id=“csvFile” accept=“.csv”>
<div class=“filters”> Start Date: <input type=“date” id=“startDate”> End Date: <input type=“date” id=“endDate”> <button onclick=“applyFilter()”>Apply Filter</button> </div>
<div class=“metrics”> <div class=“metric-card”> <h2>Average Max Temp</h2> <p id=“avgMax”>-</p> </div> <div class=“metric-card”> <h2>Average Min Temp</h2> <p id=“avgMin”>-</p> </div> <div class=“metric-card”> <h2>Record High</h2> <p id=“recordHigh”>-</p> </div> <div class=“metric-card”> <h2>Record Low</h2> <p id=“recordLow”>-</p> </div> </div>
<canvas id=“tempChart”></canvas>
<table id=“dataTable”> <thead> <tr> <th onclick=“sortTable(0)”>Date</th> <th onclick=“sortTable(1)”>Avg Max Temp</th> <th onclick=“sortTable(2)”>Avg Min Temp</th> </tr> </thead> <tbody></tbody> </table>
</div>
<script> let rawData = []; let filteredData = []; let chart;
document.getElementById(‘csvFile’).addEventListener(‘change’, function(e) { Papa.parse(e.target.files[0], { header: true, dynamicTyping: true, complete: function(results) { rawData = results.data.map(row => ({ Date: new Date(row[“Date”]), Max: row[“Average of Max Temp”], Min: row[“Average of Min Temp”] })).filter(row => row.Date && row.Max && row.Min);
});
function initializeDateInputs() { const dates = rawData.map(d => d.Date); const minDate = new Date(Math.min(…dates)); const maxDate = new Date(Math.max(…dates));
}
function applyFilter() { const start = new Date(document.getElementById(“startDate”).value); const end = new Date(document.getElementById(“endDate”).value);
}
function updateDashboard() { if (filteredData.length === 0) return;
}
function average(arr) { return arr.reduce((a,b) => a+b, 0) / arr.length; }
function renderChart() { const ctx = document.getElementById(‘tempChart’).getContext(‘2d’); if (chart) chart.destroy();
}
function renderTable() { const tbody = document.querySelector(“#dataTable tbody”); tbody.innerHTML = “”;
}
function sortTable(columnIndex) { const keys = [“Date”, “Max”, “Min”]; const key = keys[columnIndex];
} </script>
</body> </html> `
It legitimately seems like you could make good money doing that if you know how to market yourself and don’t experience cognitive dissonance.
Like selling MAGA and Jesus Slop or starting a meme coin for every breaking news story, it’s the cognitive dissonance that stops me. Even maintaining grass lawns at a landscaper made me feel like I was making a deal with the devil. Morally I could never justify selling someone their own alienation to the degree that AI creates.