What's new in Marko V6? How did we get here?
Find out on this week's episode with โช@dpiercey.meโฌ
www.youtube.com/watch?v=7gAf...
creators.spotify.com/pod/show/dev...
What's new in Marko V6? How did we get here?
Find out on this week's episode with โช@dpiercey.meโฌ
www.youtube.com/watch?v=7gAf...
creators.spotify.com/pod/show/dev...
Does this replace the use client/server directives in RSC world?
With PSC support ๐คฏ
Yes! And it can also be fixed automatically with the eslint-plugin-simple-import-sort
Who is your celebrity โBirthday Twinโ (born same day as you)? Answer with pic or gif only.
I know the basics that helped me navigate and write software relative fast and with tmux it is great. CoC made it really great to work with TS projects, copilot plugins is also great. Might be skill issue but for now I am Trying @vscode.dev again, letโs see, might come back.
Giving up on @neovim.io for a bit. I have been using for years, but recently every upgrade is breaking something and tbh I donโt have knowledge or time to debug and search for a solution (skill issue), probably because I am not a master on it,
@csswizardry.com shows an interesting behavior of web.dev in this post. TLDR an <article> element was being considered as the LCP and a JS was changing the size of it making the difference btw the two. Not sure it is the same problem but might be worth checking for insights
I thought this rendering the shell was the behavior of prerender. Will this be an option to pass to not wait for suspense boundaries?
I see, that is great didnโt know it was possible to add those timelines in the dev tools. I will check it out how.
This one is simply amazing! How much you can do with Remix itโs ๐คฏ. Two questions:
1- HOW DID YOU GET THE LOADER TIMELINE?
2- How much hydrogen helps with those concerns? Or those are handled by remix and hydrogen make it work with Shopify needs?
Thanks! It was really a mind blowing talk!
As far as my understanding, stub uses the memory router. So I was thinking that this could also be part of the router itself and not the vite plugin
Wondering if the createRoutesStub function should have it or should this be moved to react-router Route logic instead
Nice one! Are you able to use the new loaderData as params from the stub? I needed to manually call useLoaderData and pass it to the component being rendered
Component: () => <Page loaderData={useLoaderData()} />
Since that is added by the vite plugin as of now and not react router.
I think the same could be said for Astro 5, but you nailed it in the last newsletter with a summary of all the new features
I vote for the react team to align next release with the newsletter next time. ๐ or an urgent newsletter needs to be sent.
React v19 is now stable!
react.dev/blog/2024/12...
Interesting, I think BFF as my server (ex nodejs) that does SSR and service requests. But it seems that here the BFF is an API that returns data to frontend. So graphql is one that can be considered as BFF here in this definition
Mostly SSR
1 project is CSR but preload the initial state on the server
It seems StrictMode is enabled
This is nice! It has the same vibes of Perigeo. I canโt find their album in the US on Apple Music but here is the YT video youtu.be/nWHvrXjXDbc?...
In 19 you would be able to import from server.edge, but yeah it should be allowed to import also from node now
The e-mail protocol example just blew my mind! ๐คฏ
Screenshot of the threads compose dialog, highlighting the + button on the lower right.
I'm super new here, but so are most of us, so I figured I'd share this in case anyone else didn't know.
I just searched for a tool that lets me write multiple posts into a thread, and it turns out it's built in to blue sky! Just press '+' to add a reply to your post!
My last statement looks like I am saying V8 is slow (300 bsky char limit). I meant the same as it was mentioned in the other thread that overtime the engine improves performance bsky.app/profile/ruya...
One thing that I hated about X was the YouTube link. YouTube link โ> click โ> web view โ> open on default browserโ> YouTube page loaded with โopen on appโ button โ> click โ> YouTube App. Here it is just as it should be YouTube link โ> click โ> YouTube app
Yeah, defining the class is not only setting prototype chains. It needs to initialize private/static methods/fields, it does create new environments and more. Although even instantiating a function has some hooks, like strict vs non strict different behaviors. It is probably up to V8 to improve it
This article by @acemarke.dev is a very detail and well written article of how and why your components re render or why your memo component still re-renders or how react-redux prevent re-rendering and more. If you think you know react, well read it twice blog.isquaredsoftware.com/2020/05/blog...