Posts

How to use Tailwind (NativeWind) with Expo

Quick guide to using Tailwind NativeWind with ExpoRead More →

Don't use negative variable & function names

Use positive variable and function namesRead More →

Getting Closure with React

How closures work & how it's used in ReactRead More →

Building Typesafe Full Stack App w/ Apollo Server 4, Railway, Prisma, Pothos, Next, & TS (part 1 - setting up the server)

Pothos makes getting e2e typesafety really easy! In this article we'll be setting up a full stack app with Apollo Server 4, Railway, Prisma, Pothos, Next, & TSRead More →

6 Code Smells In React I Look Out For

Be sure not to include these in your app.Read More →

⚛ React Tips - You're misusing the React useEffect hook (probably)

tldr; only use to sync external systems to ReactRead More →

⚛ React Tips - Don't define component inside of another component

tldr; Defining a component inside of another component creates a costly bug that causes unnecessary re-renders and can be solved by moving the child component outside of the parent component.Read More →