Skip to content

Instantly share code, notes, and snippets.

@fogus
Created April 13, 2021 13:47
Show Gist options
  • Save fogus/1a6895d67bff871272d4cf435d29a952 to your computer and use it in GitHub Desktop.
Save fogus/1a6895d67bff871272d4cf435d29a952 to your computer and use it in GitHub Desktop.
<canvas id="c" width="1024" height="1024">
<script>
// https://js.do
const context = c.getContext('2d');
for (let x = 0; x < 256; x++) {
for (let y = 0; y < 256; y++) {
if ((x ^ y) % 9) {
context.fillRect(x*4, y*4, 4, 4);
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment