Heath Henley

Results 10 comments of Heath Henley

This might be related to this issue: https://github.com/actions/checkout/issues/1379 I mentioned there but I'm seeing the same on windows 2022 runner with repo using submodules and lfs, it has cloned successfully...

Update http.postBuffer seems like it might have made it more consistent for me: ``` ... - name: Set up custom git config run: git config --global http.postBuffer 1048576000 - name:...

This is how django handles this problem (windows doesn't let you reopen and open tempfile): https://github.com/django/django/blob/main/django/core/files/temp.py#L32

Looks like this change was already merged in https://github.com/Turbo87/utm/pull/49 ?

Here's a minimal sandbox: https://codesandbox.io/p/sandbox/6432yj I would like to know to make sure the blue box is always visible no matter the camera angle... 🤔 https://github.com/user-attachments/assets/14f1cfcf-eaa1-49ba-ba8d-c68c0f2a6fc1

This seemed to be because of the far plane of the view port that maplibre-gl uses. I found a way to hack in new near/far values to make sure it's...

Probably not ideal for performance but I found you can override them on loading the map using `map.transform.overrideNearFarZ`

@Mhamad6000 In raw three.js you can use this approach https://github.com/maplibre/maplibre-gl-js/issues/6443 Otherwise, I'm calling `map.transform.overrideNearFarZ` with a huge value for far in the `onLoad` hook on the `Map` component. Something like:...

Yeah you'll probably have to dig in then for your use case. If it disappears when far away, maybe your value isn't actually large enough - you could probably find...

I had the same problem - I see a lot of "Too many auto-margin redraws" in the browser console, so it might be related to https://github.com/plotly/plotly.js/issues/2704 The way I "fixed"...