When Abstraction Hurts: How I Inherited a System That Collapsed Under Its Own Weight
ilirimeri.com·4h·
Discuss: DEV

The Nightmare Begins

At the start of the year, my team inherited three full-stack projects from a third-party software development services provider. That meant three full-stack projects complete with frontend & backend, became our responsibility.

And the person who was going to inherit them? I, because I met the technical criteria, I don’t remember being particularly happy about it as I’d dealt with this third party’s work before. Still, I accepted the challenge.

To give you a sneak peek of what their previous work looked like, here’s an example I had come across in the past:

foreach (var item in list)
{
try
{
// NETWORK CALLS - UPDATING DATA
}
catch (Exception ex)
{
continue;
}
}

Yes, network calls inside a foreach with swallowed exceptions. When I asked one of th…

Similar Posts

Loading similar posts...