Back in my days working as .NET developer on Windows 7, I came into work one morning to find a colleague fuming that his machine had died on him.
He spent the whole morning reinstalling Windows and getting his environment set back up, and then finally pulled the branch he was working on and got back to work. Ran his test suite and bam, machine crashes.
It was only at that point the penny dropped. We took a look at his branch, and sure enough he’d accidentally written a test that, when ran, deleted his entire C: drive!
That particular lesson made me very careful when writing code that does things with the filesystem.
Back in my days working as .NET developer on Windows 7, I came into work one morning to find a colleague fuming that his machine had died on him.
He spent the whole morning reinstalling Windows and getting his environment set back up, and then finally pulled the branch he was working on and got back to work. Ran his test suite and bam, machine crashes.
It was only at that point the penny dropped. We took a look at his branch, and sure enough he’d accidentally written a test that, when ran, deleted his entire C: drive!
That particular lesson made me very careful when writing code that does things with the filesystem.
Or, you know, run it in a chroot.