Url
- How I break a URL into parts before debugging it
A URL contains several parts: scheme, host, path, query string, and sometimes a fragment. Debugging is easier when those parts are separated. The URL Parser tool helps me inspect the input and output without writing a …
- How I decode Outlook SafeLinks before clicking a suspicious URL
Outlook SafeLinks wrap a destination URL inside a Microsoft protection URL. Decoding helps reveal where the link wants to go. The SafeLink Decoder tool helps with the mechanical part, but I still check the result before …
- How I make URL slugs from titles
A slug turns a title into a URL-friendly piece of text, usually lowercase words separated by hyphens. The Slugify tool helps with the mechanical part, but I still check the result before using it somewhere real.
- How I URL-encode text without breaking query strings
URLs can only safely contain certain characters. URL encoding turns spaces, symbols, and non-ASCII text into percent-encoded form. The URL Encoder tool helps with the mechanical part, but I still check the result before …