{Java,Py}Script
There was a project announced this week that lets you write python scripts in HTML and have them execute in the browser (pyscript [https://github.com/pyscript/pyscript]). Here's an example. Hello world! This is the current date and time, as computed by Python: from datetime import datetime now = datetime.now() now.strftime("%m/%d/%Y, %H:%M:%S") Under the covers, this uses pyodide [https://pyodide.org/en/stable/] and WebAssembly. This is on