log/hash asset filename to prevent caching

When exploring to build website using go + htmx i found repo that hashed it asset file manually using script

Example
Original CSS filename: style.css
Hashed CSS filename: style.83b534.css

Later i now, build tools and frameworks, automatically handle filename hashing as part of their build processes to simplify cache management and prevent filename conflicts.

And one of reason to hashed the filename is to prevent browser to use asset in the cache (it will re-download the assets, because the filename is different), so the user won't see outdated version of the assets, this technique is called cache busting