Skip to content

Instantly share code, notes, and snippets.

View robgon-art's full-sized avatar
😀

Robert A. Gonsalves robgon-art

😀
View GitHub Profile
@korakot
korakot / draw.py
Last active May 17, 2024 03:38
Drawing on Google Colab
from IPython.display import HTML, Image
from google.colab.output import eval_js
from base64 import b64decode
canvas_html = """
<canvas width=%d height=%d></canvas>
<button>Finish</button>
<script>
var canvas = document.querySelector('canvas')
var ctx = canvas.getContext('2d')