This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// gist for: https://wetdry.world/@taureon/113489275750335143 | |
// NOTE: this is intended to just be pasted in a new tab's console | |
while (document.body.lastChild) document.body.lastChild.remove(); | |
let canvas = document.createElement('canvas'), | |
ctx = canvas.getContext('2d'); | |
canvas.width = 500; | |
canvas.height = 500; | |
canvas.style.width = canvas.width + 'px'; | |
canvas.style.height = canvas.height + 'px'; |