About 209 results
Showing the first 200 results.
https://jakelazaroff.com/words/web-components-will-outlive-your-javascript-framework/ · 25 Oct 2023
If we're building things that we want to work in five or ten or even 20 years, we need to avoid dependencies and use the web with no layers in between.
https://matteogassend.com/articles/file-based-router · 22 Oct 2023
import Stackblitz from '../../components/mdx/Stackblitz.astro' Have you ever wondered how Next, Sveltekit, Nuxt (even Expo now) do their routing? What's the magic that makes it so when you create a file called in a directory called , just for it to magic...
https://jakelazaroff.com/words/making-crdts-98-percent-more-efficient/ · 17 Oct 2023
State-based CRDTs grow monotonically, but that doesn't mean they can't be efficient. We'll learn how to compress the pixel editor state by 98%.
https://charlesharri.es/stream/no-build-step · 16 Oct 2023
Reconsider whether you need a framework. Reconsider whether you need a CSS pre-processor. Reconsider whether you need dependencies. Reconsider whether you need a build step.
https://matteogassend.com/articles/test-with-dagger · 15 Oct 2023
Have you ever had to implement a CI/CD pipeline and then proceed to push to a repository 10/20 times just to see if the pipeline works correctly? Well, this ends today! Dagger (not the stabby kind) Dagger's tagline is CI/CD as Code that Runs Anywhere I...
https://jakelazaroff.com/words/building-a-collaborative-pixel-art-editor-with-crdts/ · 10 Oct 2023
CRDTs sound cool, but how are they actually used? Let's learn by building a collaborative pixel art editor.
https://jakelazaroff.com/words/an-interactive-intro-to-crdts/ · 4 Oct 2023
CRDTs don't have to be all academic papers and math jargon. Learn what CRDTs are and how they work through interactive visualizations and code samples.
https://www.coryd.dev/posts/2023/now-page-grouping-episodes-of-the-same-tv-show · 6 Sep 2023
I made a minor update to how I'm normalizing TV data for display on my now page.
https://www.coryd.dev/posts/2023/drying-up-now-page-templates-and-normalizing-data-in-eleventy · 3 Sep 2023
My now page consists of a number of similar sections — some bespoke text, a number of media grids and lists. The text is repeated once, the lists are easily templated out in Liquid.js and the media grids are all quite similar.
https://blog.nove-b.dev/posts/javascript-wait-5-seconds · 2 Sep 2023
domの操作をしていると、 「あれ、動かない、domの生成がまだ行われていない? 試しに5秒待った後に実行してみよう」 みたいなことが良くある。 その都度、下記のように実行してきた...