DEV Community

Discussion on: The Secret Life of Software Bugs

Collapse
 
krishselvaraj profile image
Radhakrishnan

//The missing link is always some small, insignificant detail no one thinks is important enough to bring up.//This is true.

Also, I have overlooked certain things assuming they wont turn out to be a bug. For ex. In iOS development, the forced unwrapping of an object of dictionary type from API response. Due to problems in API response, the app would crash one day. It was a known bug when you reviewed the code.

So I learned not to overlook and get defensive in coding.