Data
- How I extract coordinates from Google Maps links
A Google Maps link can contain coordinates, place IDs, query text, or tracking parameters. Parsing helps extract the location data you actually need. The Google Maps Link Parser tool helps me inspect the input and output …
- How I format XML before trying to understand it
XML becomes hard to read when it is minified. Formatting makes the tag structure visible so I can see parents, children, attributes, and text nodes. The XML Formatter tool is useful because it lets me check the result in …
- How I normalize email addresses without breaking login rules
Email normalization reduces duplicate-looking addresses, but different providers and products have different rules. The Email Normalizer tool helps me inspect the input and output without writing a one-off script first.
- 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 parse phone numbers before saving them
Phone numbers are easier to store and compare when they are normalized to a consistent international format. The Phone Parser tool helps me inspect the input and output without writing a one-off script first.
- 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 …