|
|
|
|
|
by materielle
54 days ago
|
|
It’s because in most enterprise contexts: 1) Most bugs are integration bugs. Whereby multiple systems are glued together but there’s something about the API contract that the various developers in each system don’t understand. 2) Most performance issues are architectural. Unnecessary round trips, doing work synchronously, fetching too much data. Debuggers and profilers don’t really help with those problems. I personally know how to use those tools and I do for personal projects. It just doesn’t come up in my enterprise job. |
|