4th July 2026 – Hyperlink Weblog
Constructing a World Map with solely 500 bytes (through) Iwo Kadziela (assisted by Codex) discovered a option to generate a reputable ASCII world map utilizing 445 bytes of knowledge:

The important thing trick is to make use of deflate compression, which is then wired collectively utilizing this neat snippet of JavaScript. I did not know you could possibly use fetch() with information: URIs like this:
fetch(‘information:;base64,1ZpLsgIxCEXnrM…==’).then(
r => r.physique.pipeThrough(new DecompressionStream(‘deflate-raw’))
).then(
s => new Response(s).textual content()
).then(
t => b.innerHTML = ” + t
)
