DEV Community

Odipo Otieno (KwargDevs)
Odipo Otieno (KwargDevs)

Posted on

1

Join Me on YouTube for More Tech Content!

Hi Dev,

I hope you're doing well! I'm excited to share some news with you—I've recently launched a YouTube channel where I'll be diving deeper into the topics we all love, from coding tutorials and tech reviews to insightful discussions on the latest trends in the industry.

If you've enjoyed my posts here on Dev.to, I think you'll find even more value in the content I'll be creating on YouTube. Here's a glimpse of what you can expect:

In-depth Coding Tutorials: From Python and Django to frameworks and tools, I’ll be breaking down complex topics into easy-to-understand videos.
Tech Reviews and Demos: Get a firsthand look at the latest tools, libraries, and gadgets that can boost your productivity and skills.
Industry Insights: Stay ahead of the curve with discussions on the latest trends and developments in the tech world.
I’d love for you to join me on this journey. Your support means the world to me, and it would be amazing to have you as part of the community on YouTube as well.

👉 Subscribe to my YouTube Channel here

Feel free to leave comments on what you'd like to see on the channel, or any feedback you have—I'm all ears! Thank you for being a part of my Dev.to journey, and I can’t wait to continue learning and growing together with you.

Best regards,

Vincent Otieno
VinCoD

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay