Name Description Size
__init__.py 837
background.py <style> :root { background-color: black; } </style> 1400
orientation.py 857
printcmd.py const width = 700; const height = 900; const canvas = document.getElementById("image"); const context = canvas.getContext("2d"); canvas.width = width; canvas.height = height; for (let x = 0; x < width; ++x) { for (let y = 0; y < height; ++y) { const colourHex = Math.floor(Math.random() * 0xffffff).toString(16); context.fillStyle = `#${colourHex}`; context.fillRect(x, y, 1, 1); } } 4321
user_prompts.py 3591