I don't have a ready list of toxic shortcuts like those, but I can comment on the general practice.
Same thing with the Y2K issue. Some programmers, teams and companies up through the 1980s completely ignored the issue of the year field rolling over from 99 to 0.
And I have gotten into some heated discussions with a team member who has looked on some of the design compromises or coding practices that I committed on the project so far as being sloppy, unworkmanlike, or beneath him. He takes a very long term perspective on the work, like you want to write code that can be hung on a wall or explained in front of a committee, and generally, I am trying to get some proof of concept working in order to convince my client that the project is worth doing in the first place. Or otherwise I feel under pressure due to short term time constraints as a contractor.
It's easy to take pot shots at other people's "crappy" practices. I've done so many, many times myself.
I think what motivates shortcut taking is the idea that a priority such as simplicity, easier code to develop and test, and/or perhaps even pressure from a technical lead on a project, leads to a shortcut being taken.
Someone decided (somehow) that completeness or coverage of more situations matters much less than completion time of the work.
Also, I have sometimes taken shortcuts based on a philosophic notion that even expanding the range of contingencies handled greatly still does not make the code "perfect", it just reduces the probability of an out of band result somewhat.
If I see the asymptote of a curve that describes that declining probability of a problem fall off quite steeply where I make my shortcut, I will tend to be comfortable with taking the shortcut.
Now, I am describing an educated approach to shortcuts.
What you really have to watch out for are shortcuts committed by someone who doesn't know and doesn't care, either.
An example of this in real time programming is someone who doesn't protect data structures with a mutex. Or, someone who disregards the likelihood of race conditions.
Before I criticize a shortcut too heavily, I want to know what the developer was thinking. Maybe he really had his reasons.
Or, maybe he just sucked and had poor knowledge that he is defending.
I've seen equal measures of both ends of the spectrum.