901
Comments (57)
sorted by:
You're viewing a single comment thread. View all comments, or full comment thread.
1
DesertYote 1 point ago +1 / -0

These guys are morons for doing things manually. I could automate the process with just a little Python. I need to modify csv, json, and xml files so often in the code that I write that I have a collection of stock classes to call on that I have written over the years.

Pro tip: Base your code on libraries of generic base classes that are light on dependencies and easily testable. Specialize at the highest level possible. Those generic base classes can be reused. Chances are, if you need to solve a problem once, you need to solve it again.