John Yani

Results 279 comments of John Yani

The relevant PR appears to be this: https://github.com/lucide-icons/lucide/pull/1906

The specific renaming pattern that is the cause: pnpm renamePattern "^([a-z-]+)-(square|circle|diamond|octagon|hexagon|triangle)$" "\2-\1" The same should be applied to lucide.dev website

> The issue of BadNativeWindow might be related of the usage of eglCreatePlatformWindowSurface after making a display using the [MESA_platform_surfaceless extension](https://registry.khronos.org/EGL/extensions/MESA/EGL_MESA_platform_surfaceless.txt). I've submitted a PR to not use the headless...

Oh, I didn't notice that. Though I don't think there should be a separate button. As a user I expected to find the HTML code under the "Share" button. I...

I have a question: why "interactive Map" uses "uncompessed query", like `?Q=...`, while "permalink" uses "compressed" one: `?q=PHVuaW9...`?

Additional difference I noticed is that index.html first loads map view and then runs the query, while map.html first runs the query and then loads map view.

@chrisdebian I think there's still no easy to use alternative to embedding a map with markers. You still need to use Leaflet or Mapbox GL with a thirdparty base layer...

I've checked the codebase and there's no mention of `VK_ERROR_DEVICE_LOST` whatsoever. It might mean that blade either doesn't handle and can't recover from such a case or that this is...

If this is accepted, the next step would be introducing recovery mechanism to gpui or blade. Something like this: ```rust self.recovery_handler = DeviceRecovery::new(); match sync_point.wait_for_detailed(1000) { SyncStatus::InvalidSyncPoint => { self.recovery_handler.on_invalid_sync_point("GPU...

Isn't the sole point of blade to hide cross platform intricacies? Why do you need blade at all of you need to handle special cases like this?