Is Show HN allowed to be used for advertising established businesses? Typically it's personal projects, sometimes the occasional early-stage one-person product
Hey HN! I’m Dominic, an engineer at Retool, and I'm excited to be sharing this on HN.<p>I often need to spin up a quick Postgres DB or REST API to test features I’m working on. Seeding these with data can get tedious, especially if I have to duplicate resources across environments. I put together a few quick tools to make this easier, like Import CSV to PostgreSQL (<a href="https://retool.com/utilities/write-csv-to-postgres" rel="nofollow">https://retool.com/utilities/write-csv-to-postgres</a>) and Convert CSV to JSON (<a href="https://retool.com/utilities/convert-csv-to-json" rel="nofollow">https://retool.com/utilities/convert-csv-to-json</a>).<p>All the utilities are freely available at <a href="https://retool.com/utilities" rel="nofollow">https://retool.com/utilities</a> - this one (<a href="https://retool.com/utilities/generate-app-from-csv" rel="nofollow">https://retool.com/utilities/generate-app-from-csv</a>) is one my favorites which lets you auto-generate a basic CRUD app from a CSV file.<p>Any feedback, requests for utilities or questions welcome! :)
> CSV file format consists of one or more records, separated by commas. Each record consists of one or more fields, separated by commas.<p>Pretty sure that first sentence is supposed to read "CSV file format consists of one or more records, separated by newlines." Also if you're targeting this at total CSV newbies, might want to mention that fields can contain commas themselves as long as they're within double-quoted strings.