That ACTUALLY makes perfect since! CSV = Comma Separated Value. Not entering a comma for a field that is numeric, that might be followed by a field that is text or has a character limitation would cause a SQL error when uploaded. There is a video of the election officials going over the video evidence from the hearing, and he described the server crash as an error with the SQL server.
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.
That ACTUALLY makes perfect since! CSV = Comma Separated Value. Not entering a comma for a field that is numeric, that might be followed by a field that is text or has a character limitation would cause a SQL error when uploaded. There is a video of the election officials going over the video evidence from the hearing, and he described the server crash as an error with the SQL server.
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.