aoc2022/d12/viewpng.html

5 lines
136 B
HTML
Raw Normal View History

2022-12-14 00:18:14 +00:00
<img>
<script>
let img = document.querySelector('img');
img.src = "data:image/png;base64,"+ window.location.hash.substring(1);
</script>