CSV
Parsing a CSV file using …
Often times I need to do something multiple times with different input values. Like recently I needed to add a bunch of folks to a team in GitHub for an upcoming training session, easy to do for one or two, not for 200+. Luckily I had everyone’s information in a .csv file, that turned into a …
Importing Data into …
If you’re using Postgres as a database and need to import data from a .csv file, it’s really easy to do using psql. Before you start, you’l need: psql running in an interactive terminal A Postgres database with a table you want to import data, we’ll call it user_data Data in …