BenNadel.com Utilities

Back to main site

These are small utilities that I built for myself. But, feel free to use them.

Sprint Name Generator

This allows me to generate a random sprint name using an "Adjective + Noun" pattern (ex, "Malicious Panther"). The noun values are all animal-based.

JSON Explorer

This allows me to paste a JSON string into a textarea and render an interactive data explorer with collapsible branches (inspired by ColdFusion's CFDump tag).

Pretty-Print JSON

This allows me to paste a JSON string into a textarea and pretty-print it using `JSON.stringify()` along with the given indentation size and character.

Lorem Ipsum Text Generator

This allows me to generate Latin place-holder text for interface design prototypes.

Random Hash Generator

This allows me to generate random hash values in MD5 and SHA formats.

Random Slug Generator

This allows me to generate random slugs (ex, "14w1hp") of various sizes. All slugs using the character range, `[0-9a-z]`.

Color Palette Generator

This allows me to generate color palettes using HSL sliders and randomly-selected HEX values. Palettes can be both saved-to and parsed-from SVG and PNG files.

CSV to CTE Transformer

This allows me to take CSV data, parse it into a two-dimensional array, and transform it into a Common Table Expression (CTE) which I can then use as the first table in a subsequent JOIN.