Myles Scolnick

Results 578 comments of Myles Scolnick

@rupurt - I was thinking we could show the equivalent code for Python/SQL, like we do with pandas

right now our go-to-definition logic is on the frontend and doesn't handle this edge case. we can probably handle this in the same logic, but the longer term solution might...

I have a fix for private variables in https://github.com/marimo-team/marimo/pull/1425

@dmadisetti this issue is still here

@gabrielgrant we already do this: https://github.com/marimo-team/marimo/blob/main/frontend/src/core/static/files.ts#L11-L41 I missed this snippet that fixes it. I think the fix is either the `'Content-Type'` or using `fetch` to deserialize the base64 which the...

This seems to be faster, but using a non-public api ```python import requests from packaging import version import re from urllib.parse import urljoin def get_latest_version(package_name, timeout=5): url = f"https://pypi.org/simple/{package_name}/" try:...

this is great! the direction looks right - could we verify with some e2e tests? some examples: 1. only one connection is allowed when in `--global-session`. otherwise we will likely...

sorry i mispoke, you can just add the tests to the python side. our e2e tests with playright are a bit finicky and flakey so we don't keep those updated.

@peterwilli - an marimo server is not launched in those tests, but rather we use the starlette TestClient https://www.starlette.io/testclient/

@peterwilli, can we help unblock you?