10 > 64, in QR Codes
11–20 of 83 posts
Re: 10 > 64, in QR Codes
#12Re: 10 > 64, in QR Codes
#13I'm not that familiar with QR codes. Anyone know how base16/hexadecimal encoding with 0-9A-F fares in comparison? It seems like an obvious encoding to test, especially for simplicity of implementation compared to base64 and base10, and an odd one to miss for comparison?
Re: 10 > 64, in QR Codes
#14I'm not that familiar with QR codes. Anyone know how base16/hexadecimal encoding with 0-9A-F fares in comparison? It seems like an obvious encoding to test, especially for simplicity of implementation compared to base64 and base10, and an odd one to miss for comparison?
0: https://en.wikipedia.org/wiki/QR_code#Information_capacity
Re: 10 > 64, in QR Codes
#15Re: 10 > 64, in QR Codes
#16base8 in numeric mode: 8 input bits -> 3 digits -> 10 output bits, 25% overhead
base32 in alphanumeric mode: 5 input bits -> 1 character -> 5.5 output bits, 10% overhead
I would prefer base32 out of these too, but it's interesting that even base8 beats base64 here.
Re: 10 > 64, in QR Codes
#17Re: 10 > 64, in QR Codes
#18Re: 10 > 64, in QR Codes
#19I had an idea to embed a webpage in a dataurl and convert that to a QR code; the website would only exist on if you snapped the QR Code. I was dreaming of code-golf, demoscene, nft and weird business card applications, but the web-browsers ruined my fun because they won't display dataURL unless you manually copy/paste it into the URL bar. https://issues.chromium.org/issues/40502904
document.body.innerHTML = decodeURI(window.location.hash.substring(1))
So you can point to Demo" rel="nofollow">https://srv.us/d#DemoRe: 10 > 64, in QR Codes
#20I'm not that familiar with QR codes. Anyone know how base16/hexadecimal encoding with 0-9A-F fares in comparison? It seems like an obvious encoding to test, especially for simplicity of implementation compared to base64 and base10, and an odd one to miss for comparison?