by bpyne on 8/21/20, 1:18 PM with 4 comments
What are your own "Oh shoot" moments? Did you suffer any consequences from management or anyone else in your organization?
by BlameKaneda on 8/21/20, 1:28 PM
One evening I wasn't paying attention and accidentally dropped the files to the prod folder. I went to the prod page and sure enough, it was broken. It wasn't a high traffic page, but I was still afraid that we'd get a complaint or two.
Since the original prod files had been written over by the new ones, I went to the page's GitHub and downloaded the files from the repo.
I then dragged the repo files to the prod folder, and the page was back to normal. Definitely gave me a fright.
I informed my boss about what happened the next day and how it was resolved, and although he looked somewhat alarmed I didn't get in trouble.
by lexfiend on 8/21/20, 4:07 PM
run_backup & eject_tape
Fortunately, we were able to reconstruct the server's contents from individual workstations, but I had to endure "how's the backup?" ribbing for many months.I also changed the script to:
run_backup && test_backup && eject_tape
so if the tape was still in the drive when I got in to work, I knew to check on things.by AnimalMuppet on 8/21/20, 4:20 PM
The board still booted, because the boot sector still pointed to the sector that the OS kernel file had been in, and the contents of those sectors hadn't changed. But the sectors were marked as unused on the disk, and could have been overwritten by any file write.
I booted for two days from that deleted file before I got to the point where I could re-create it.
by rococosbasilisk on 8/21/20, 1:33 PM
Thinking back on the times I've had code exist nowhere else but the clipboard...