Joel Kuzmarski

Results 88 comments of Joel Kuzmarski

@jeffdomke If it were me, I would eliminate randomly chosen uneducated TryMyUI testers and have a prerequisite to participation in App Mining be that you, as a fellow app developer...

Or perhaps a button when on the `Component.astro` "tab" that when manually clicked adds the import statement to the top of `Page.astro`. Would be helpful if it switched you back...

Agreed, perhaps add a comment to demystify where the format library is coming from, and then use an existing variable to demonstrate attribute usage. At first I thought the package...

I think I've encountered this as well. My workaround was to, in the context of this example, add to `package.json`: ```json "dependencies": { ---snip--- "can-stache-converters": "*", ---snip--- } ``` I...

## IntelliSense in action - `Img` hover: ![image](https://github.com/zerodevx/svelte-img/assets/990216/032bd92f-c461-42ad-8a30-ea15674c3c49) - CTRL+SPACE ![image](https://github.com/zerodevx/svelte-img/assets/990216/b295e003-a60b-42e6-b973-67425e9a959a) - `src` hover: ![image](https://github.com/zerodevx/svelte-img/assets/990216/35c15011-5e86-449e-9c04-9e8cc042dd23)

https://github.com/JonasKruckenberg/imagetools/issues/567

A benefit to preferring progressive jpg over webp->avif->jpg is less redundant markup sent over the wire, especially when using multiple sizes across multiple fallback image types (even though gzip does...

I was able to up my lighthouse from 89/94 to 99 thanks to preloading, but keep in mind this is for an image the incures the network request `304` dance.

I think `loading` makes sense. Probably doesn't hurt to set `decoding`, but don't think it really helps? Maybe I was thinking more along this line regarding `preload` when I made...

Some good notes regarding `loading` on this page: https://web.dev/articles/browser-level-image-lazy-loading#distance-from-viewport_thresholds > The eager value is simply an instruction to load the image as usual, without delaying the load further if it...