This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Tyler (Jones Beach)
fromscratchcode.com
did:plc:mqmpie5oyrezfx6ueqgwiarb
lol another fun kwargs bug.
def foo(a, b=2):
return (a, b)
print(foo(1, b=4)) # (1, 2) YIKES!
2025-10-27T16:22:42.857Z