Roy Hyunjin Han

Results 44 comments of Roy Hyunjin Han

- [ ] Write unit test that recreates this error

Hmm this seems like a good idea because it would improve data consistency but I will wait to see if anyone else voices their opinion. On Wed, Jun 12, 2024,...

I think my rationale in the past for being more specific about location in certain cases was to reduce ambiguity. I agree removing the country from the location might be...

Your third point is valid. Some of the three digit codes are not immediately clear. It would take away from the readability of the CSV especially if some people refer...

As a workaround, you can disable google-droid-sans-fonts altogether. Adding the following configuration to `~/.config/fontconfig/fonts.conf` fixed the issue in Fedora 42: ``` /usr/share/fonts/google-droid-sans-fonts/* ``` Thanks to https://802.11ac.net/2022/06/10/fedora-korean-font/ for the tip.

Seeing this error even in a vanilla jupyterlab install when starting the terminal extension ``` [E 2024-10-30 17:57:51.925 ServerApp] Uncaught exception in write_error Traceback (most recent call last): File "/.virtualenvs/crosscompute/lib64/python3.12/site-packages/tornado/web.py",...

This error still appears even after upgrading to ipykernel-5.5.0 and jupyter-client-6.1.12.

We might have to support a combination of private servers, deploy keys and machine users. I don't think we should read anything directly from disk. Deploy keys probably cover most...

For repositories with public visibility, one can use the zip trick: ``` environment: packages: - id: pandas manager: pip - id: crosscompute_macros[shapely]@https://github.com/crosscompute/crosscompute-macros/archive/refs/heads/main.zip manager: pip ``` References - https://stackoverflow.com/a/50192006 - https://stackoverflow.com/a/76620421