| > contractors > without compromising quality Pick one. I recently reviewed some offshore code in Python (pandas) that was something like: s = pd.Series(...) for i, d in enumerate(s):
if i == 12:
value = df.loc[i][5]
break Yes, that's right; instead of checking the dimensions and selecting the value by index, they added an iterator. An entire app full of this. Know who reviewed the code? That's right, more offshore workers. Can't really blame 'em though. When you're a contractor, you have no obligation to write anything of quality since you might never see the code again. So, now we'll spend more time unf*cking the code which is a latent expense the company didn't anticipate. ¯\_(ツ)_/¯ |