Wrote a little program(200 bytes) to encode binary files into base64.
I've come across base64 often in the past, I knew it used some sort of ascii table for packing binary data into text, but it's the first time that I implement it myself.
doc: http://wiki.xxiivv.com/site/base64.html
src: https://git.sr.ht/~rabbits/uxn-utils/tree/main/item/cli/base64/b64enc.tal
@neauoire I don't see the handling of the padding and the alternate MME table for base64 url encoding (that has become a silent de facto norm because of sending binary other HTTP GET :D )