Posts by hydroxyl-radical
Currently, making a tag that looks like this: code-golf ...is somewhat hard: <a class="badge is-tag" href="https://codegolf.codidact.com/categories/49/tags/4274">code-golf</a> alth...
JavaScript (Node.js), 60 bytes n=>{for(l='';n;l="0123456789ABCDEF"[n%16]+l,n>>=4);return l} Try it online! Explanation n=>{for(l='';n;l="0123456789ABCDEF"[n%16]+l,n>>=4);ret...
Python 3, 463 400 343 338 bytes -63 bytes thanks to trichoplax's suggestion to remove spaces -57 bytes by simple conversion to base 36 -5 bytes by removing base= (seriously, how did I miss t...