Text
- How I read text as binary without overthinking it
Text can be represented as bytes, and bytes can be shown as binary. The interesting part is that not every character is one byte. The Text to Binary tool helps with the mechanical part, but I still check the result …
- How I spell things with the NATO alphabet when clarity matters
The NATO alphabet maps letters to words like Alpha, Bravo, and Charlie so spoken spelling is easier to understand. The NATO Alphabet tool helps with the mechanical part, but I still check the result before using it …
- How I test a regex before putting it into code
Regex is powerful, but it is also easy to get almost right. “Almost right” is the problem. A regex can match too much, too little, or the right thing in your test but the wrong thing in production.
- How I turn long words into numeronyms like i18n
A numeronym shortens a long word by keeping the first and last letter and replacing the middle with a number. The Numeronym tool handles the repetitive part so I can focus on checking whether the result makes sense.
- How I turn plain text into a readable PDF
Plain text is easy to edit, but PDF is easier to send when layout needs to stay stable. The Text to PDF tool is useful because it lets me check the result in a small, controlled place before I use it in a bigger …
- How I use sed safely for search and replace
sed is useful when I need to change text from the command line. It can replace words, delete matching lines, or print only the lines I care about. It can also edit many files quickly, which means I do not run it …