Every day there are devs out there who see the horrendous code I wrote 8+ years ago
Every day there are devs out there who see the horrendous code I wrote 8+ years ago
I learnt this many years ago but didn't keep it top of mind lately
Always start a video with "what value am I giving to the viewer?"
You'll find that will make them watch and come back for more
I learnt this many years ago but didn't keep it top of mind lately
Always start a video with "what value am I giving to the viewer?"
You'll find that will make them watch and come back for more
Someone purchased using a discount code only sent to a few users and their email is not on that list
So someone must've given it to them
Really cool if true
Someone purchased using a discount code only sent to a few users and their email is not on that list
So someone must've given it to them
Really cool if true
Most views are existing subscribers
Which is great, but I want to reach more new viewers too
Most views are existing subscribers
Which is great, but I want to reach more new viewers too
This is mostly due to not uploading videos
I was too busy filming 129 videos for Cosden Code
Time to give YT some more attention
This is mostly due to not uploading videos
I was too busy filming 129 videos for Cosden Code
Time to give YT some more attention
That's expected and I'm not mad about it
I'm playing the long game
Time to make great YT videos again
That's expected and I'm not mad about it
I'm playing the long game
Time to make great YT videos again
I'm not looking for a fast spike. I'm playing the long game
I want Cosden code to still be relevant and successful in 5 years
I'm not looking for a fast spike. I'm playing the long game
I want Cosden code to still be relevant and successful in 5 years
The Black Friday launch was super successful and there have been no issues
Customer support is great too
I highly recommend them if you're launching a SaaS
The Black Friday launch was super successful and there have been no issues
Customer support is great too
I highly recommend them if you're launching a SaaS
That's 100+ devs taking their React success in their own hands
That's 100+ devs taking their React success in their own hands
This is the ultimate learning platform for full-stack React
Interactive courses and guided projects on JS/TS, React, Redux, Zustand, React Router, Tanstack Router, Next.js, and more!
In-depth video lessons, integrated IDE, and an AI mentor
Details 👇
This is the ultimate learning platform for full-stack React
Interactive courses and guided projects on JS/TS, React, Redux, Zustand, React Router, Tanstack Router, Next.js, and more!
In-depth video lessons, integrated IDE, and an AI mentor
Details 👇
Even when I make videos showing how it is, and using the official docs as support, they still don't get it
So here's a couple of the most important things you need to know about how React works
Even when I make videos showing how it is, and using the official docs as support, they still don't get it
So here's a couple of the most important things you need to know about how React works
This will cover all the essentials like JSX, components, state, hooks, etc
It won't cover 3rd party libraries (RQ, forms, state management) since those will be in other courses
What topics do you want to see?
This will cover all the essentials like JSX, components, state, hooks, etc
It won't cover 3rd party libraries (RQ, forms, state management) since those will be in other courses
What topics do you want to see?
The videos are SO GOOD. Literally my best work
First course is on design patterns in React, and I promise you, you haven't seen most of these patterns
I'm beyond excited to launch this
The videos are SO GOOD. Literally my best work
First course is on design patterns in React, and I promise you, you haven't seen most of these patterns
I'm beyond excited to launch this
Building small components makes your apps simple, maintainable, and scalable
You can still have complexity, but it will be much easier to manage with small pieces
The best code is simple code
Building small components makes your apps simple, maintainable, and scalable
You can still have complexity, but it will be much easier to manage with small pieces
The best code is simple code
First impressions, it's mostly the same, but the tab complete is inferior
You really feel it when trying to tab complete a lot of files
Pricing is better though so idk
First impressions, it's mostly the same, but the tab complete is inferior
You really feel it when trying to tab complete a lot of files
Pricing is better though so idk
Instead of:
setCount(count + 1)
Do:
setCount(prev => prev + 1)
The function version always gets the current state. Helps avoid bugs with stale values
Instead of:
setCount(count + 1)
Do:
setCount(prev => prev + 1)
The function version always gets the current state. Helps avoid bugs with stale values
Instead of:
console.log(user)
console.log(posts)
Do this:
console.log({ user, posts })
You get labeled output in the console. Makes it way easier to track what's what when you have multiple logs
Instead of:
console.log(user)
console.log(posts)
Do this:
console.log({ user, posts })
You get labeled output in the console. Makes it way easier to track what's what when you have multiple logs
This is when you call a state updater function directly in the body of the component as its rendering
React will abandon the render and start again with a new value
Here's an example
This is when you call a state updater function directly in the body of the component as its rendering
React will abandon the render and start again with a new value
Here's an example
Outside of that, it just gets in my way
No matter the model or the tool that I use
Outside of that, it just gets in my way
No matter the model or the tool that I use
This hook finally fixes one of the biggest problems that developers face when it comes to effects and dependency arrays
Finally, we can put this issue to rest and focus on shipping actual features
Here's how it works
This hook finally fixes one of the biggest problems that developers face when it comes to effects and dependency arrays
Finally, we can put this issue to rest and focus on shipping actual features
Here's how it works
This is by far the best course on this topic. Nothing else compares
Most other articles/courses repeat the same 5 outdated patterns over and over again
My course goes deep, and shows you patterns you can use today
This is by far the best course on this topic. Nothing else compares
Most other articles/courses repeat the same 5 outdated patterns over and over again
My course goes deep, and shows you patterns you can use today
Most developers quit right before they would have succeeded
The difference isn't talent, it's just staying in the game a bit longer
Most developers quit right before they would have succeeded
The difference isn't talent, it's just staying in the game a bit longer
It gives you all of the benefits of a reusable function, while keeping the flexibility of how you might use it
Here's the code:
It gives you all of the benefits of a reusable function, while keeping the flexibility of how you might use it
Here's the code: