Csv
- How I convert lists without manually editing every line
Many small data tasks are just list shape problems: one item per line needs to become CSV, JSON, quoted strings, or an SQL IN list. The List Converter tool is useful because it lets me check the result in a small, …
- How I generate SQL INSERT statements from CSV or JSON
Sometimes I have a small table of data and need to insert it into a database. For a few rows, writing SQL by hand is fine. For many rows, it is boring and error-prone.
- How I open a CSV file without spreadsheet surprises
A CSV viewer helps inspect tabular data before importing it into a database, spreadsheet, or script. The CSV Viewer tool is useful because it lets me check the result in a small, controlled place before I use it in a …
- How I turn CSV into JSON without breaking the data
CSV is easy to open in a spreadsheet. JSON is easy to use in APIs and code. Moving between them sounds simple, but small details can break the data. The CSV and JSON Converter helps convert CSV to JSON and JSON back to …
- How I turn JSON into CSV for spreadsheets without flattening the wrong thing
CSV is a table, while JSON can be deeply nested. Conversion works best when the JSON is an array of similar objects. The JSON to CSV tool is useful because it lets me check the result in a small, controlled place before …
- How I turn terminal tables into Markdown or CSV
Terminal output is readable to humans, but often awkward to paste into docs, spreadsheets, or issue reports. The CLI Table Converter tool helps me inspect the input and output without writing a one-off script first.