What are the biggest myths software engineers believe?

Answer by Kishore Kumar:

The Software Engineer's dilemma – Problems or procedures one simply doesn't believe in, or follow, unless or until they face it themselves.

Opinion :- Result / Response:

  1. An extra 'for' loop doesn't make much difference here :- The Service ends up consuming N^2 or worse resources. Couldn't be any better than setting the servers on fire, if the service is being used millions of times a day.
  2. Design is a waste of time, I have done much bigger projects earlier :- Lost in a maze, in the middle of project and have to re-do the entire stuff.
  3. Comments and Naming patterns? Dude, you are a developer! Go figure yourselves – The next hour working on someone's code…. What the hell is he doing here? Why is this named XY, rather than XX anyway?
  4. Subversion Update? Probably I might be the only one working on this file :- Ends up messing with conflicts.
  5. I will commit all my changes at once, once I am done :- It goes wrong somewhere, or previous version might be better than this and there is no way to go back, rather than writing from scratch.
  6. Unit tests? F**k my code is *** proof :- (Some of the external services changes, and the code might still be *** proof) – where the hell it is breaking.
  7. Similarly, Logs? Boring! :- What the hell is happening? How do I figure out where it is breaking.
  8. AES or some security algorithm is stringent, I might probably write or customize one my selves :- Well, actually AES or some X is better and I might better of follow established practices sometimes.
  9. There is lot of management, that I am wasting time on meetings than writing code :- (Looking at some new code) Who made this changes? Was it supposed to be here?
  10. Why does my company spend/waste huge money on testers? :- On seeing a bug reported by tester, f**k how did I miss that?
  11. Those first time set-up instructions are absurd, particularly for that server X, who is doing it like that anyway. I did better in my previous job :- Ok, I might have to re-do it from the beginning, following each step carefully.

This list is exhaustive. Suggestions or additions are welcome.

What are the biggest myths software engineers believe?

Leave a comment