Files
- How I create a zip file in the browser for small bundles
A zip file bundles multiple files into one download. It is useful for small handoffs, attachments, or grouped exports. The Zip Builder tool is useful because it lets me check the result in a small, controlled place …
- How I look up MIME types when uploads or downloads behave oddly
A MIME type tells software what kind of content a file or response contains. The MIME Types tool helps with the mechanical part, but I still check the result before using it somewhere real.
- How I turn a small file into Base64 when I really need to
Base64 can turn a file into text, which is useful for small embedded assets or debugging data URIs. The Base64 File tool helps with the mechanical part, but I still check the result before using it somewhere real.