Have you ever had that feeling of building something from scratch? The temptation of proving yourself...
So before diving into this, this code straight up isn't mine and I just found it on github written by...
A modern version of templating engines and Jquery. In this age of high-level frameworks, this stack...
With Tailwind reaching 6,000,000+ weekly downloads on NPM, as well as becoming my personal go-to for...
So I actually use both "max-width" queries and "min-width" queries. Why use both...
So imagine this one big global store with lots of nested properties, how would you write a way to...
Recently I've been stuck trying to start learning something new. I'm self-thought and am currently...
When you have a view on supabase and grab the types using the supabase cli, you'll soon find out that...
In Supabase, it is often useful to have utility functions to use in RLS Policies to re-use common...
If you're like me you probably made the mistake of jumping straight into react after you've gotten...
👋 Hey if you're looking to add polymorphic components to your project, why not try react-polymorphed,...
UPDATE: After a few weeks of researching more about polymorphic components and other implementations,...
let foo = () => {} let bar = () => foo foo = bar foo === bar() // ??? Enter fullscreen...