CSS Quantity Queries Are Really Cool
October 21, 2024
Quantity queries are an incredible CSS feature that allows you to style elements based on the number of elements in a container without using any JavaScript at all.
Read moreOctober 21, 2024
Quantity queries are an incredible CSS feature that allows you to style elements based on the number of elements in a container without using any JavaScript at all.
Read moreOctober 7, 2024
Learning how to properly plan projects is one of the most important skills you can learn since it will lead to you finishing more projects quicker.
Read moreAugust 12, 2024
The aspect-ratio CSS property makes responsive design (especially with images/videos) so much easier and it only takes a few minutes to learn.
Read moreJuly 29, 2024
Handling focus in CSS is quite a bit more complicated than it seems and in this article I cover the 3 main CSS focus methods as well as a secret fourth focus method.
Read moreJuly 15, 2024
TypeScript 5.5 may seem like a small update, but it comes with one of the most requested features for fixing array filtering as well as 3 other really cool features that I love.
Read moreJuly 1, 2024
For decades, height: auto; has been a pain to animate in CSS. But with the introduction of the calc-size() function in CSS, we can finally animate height: auto; without the need for any JavaScript.
Read moreJanuary 8, 2024
By far the most confusing part of the app router in Next.js is how caching works which is why this article will break down exactly how every part of Next.js's cache works so you can stop fighting it and start benefiting from amazing performance gains.
Read moreDecember 11, 2023
The new CSS property margin-trim is very simple, but incredibly useful when working in a component based design system.
Read moreNovember 27, 2023
Server components are the new way of writing React applications and it changes everything about React making it easier than ever to create complex applications. This article goes in depth into everything you need to know about server components.
Read moreJune 19, 2023
Markdown is one of the best text markup languages and with this aritcle you will learn everything you need to know to become a master of Markdown.
Read moreMay 8, 2023
Image loading is a major factor in page load times which is why it is important to use responsive images to minimize the amount of data that is transferred to users.
Read moreMay 1, 2023
Lazy loading images is one of the easiest ways to speed up your site, but there are a few advanced techniques you can use to make your lazy loading even better.
Read moreApril 24, 2023
The new HTML dialog element makes working with accessible modals so much easier. In this article I explain everything you need to know about the new dialog element to use it in your next project.
Read moreDecember 12, 2022
HTTP status codes are vital to creating an API and in this article I will explain all the important HTTP status codes and when to use them.
Read moreDecember 5, 2022
Defining media queries with min-width and max-width is not super intuitive which is why CSS added range media queries and they are amazing.
Read moreOctober 10, 2022
There are 4 different scopes in JavaScript which each behave differently and you need to understand those differences to truly master JavaScript.
Read moreSeptember 26, 2022Updated: July 29, 2024
CSS has been lacking a parent selector for years and now they finally introduced one with the :has pseudo class and it is incredible!
Read moreSeptember 12, 2022
CSS just added individual rotate, translate, and scale properties which almost entirely remove the need for the transform property in CSS.
Read moreAugust 1, 2022
There are 24 total viewport units in CSS which all serve a specific purpose and my goal in this article is to explain each unit to you.
Read moreJuly 25, 2022
React Router is by far the most popular routing library in React and this article goes in depth on everything you need to know about React Router.
Read moreJuly 18, 2022
The facade pattern is a very common and simple design pattern which can easily clean up your code which is why it is one of the first design patterns you should learn
Read moreJuly 11, 2022
React's unopinionated nature makes it hard to know how to structure projects which is why in this article I am covering 3 different ways of laying out your folder structure in React.
Read moreJune 20, 2022
useImperativeHandle is the perfect hook for handling complex ref behaviors, but it is pretty complicated to understand.
Read moreJune 6, 2022
React 18 introduced many new hooks and in this article I will be talking about useId.
Read moreMay 2, 2022
React 18 introduced many new hooks and in this article I will be talking about useDeferredValue.
Read moreApril 25, 2022
React 18 introduced many new hooks and in this article I will be talking about useTransition which is the most useful of those hooks.
Read moreApril 18, 2022
CSS layers change how the cascade works and it makes writing clean CSS code so much easier.
Read moreApril 11, 2022
Custom events in JavaScript make handling things like double click, long press, and touch gestures much easier, but they can also be used for cross app communication.
Read moreApril 4, 2022
You may think you are writing cleaner code using the bang operator, but in reality you are just opening yourself up to a plethora of bugs.
Read moreMarch 28, 2022
Debounce and throttle are two of the best ways to improve the performance of your site and in this article I talk all about how to implement both options and what they do.
Read moreMarch 21, 2022
You probably know console.log and a few other console methods, but did you know there are over 20 amazing console methods that make debugging easier and more enjoyable.
Read moreMarch 7, 2022
Snippets are one of the easiest ways to customize your VSCode experience and in this article I will explain everything you need to know about creating your first snippet.
Read moreFebruary 21, 2022
This ultimate guide will break down everything you need to know about the new temporal date API in JavaScript.
Read moreFebruary 7, 2022
This ultimate guide will break down everything you need to know about MongoDB to build your next project.
Read moreJanuary 31, 2022
Detecting element size changes is something that is normally difficult to do, but with resize observer it is incredibly easy.
Read moreJanuary 24, 2022
The fetch API looks straightforward, but there are a lot of edge cases that this blog article will address for you.
Read moreJanuary 17, 2022
Understanding how CSS position works seems straightforward, but there are quite a few nuances you need to understand in order to truly master CSS.
Read moreJanuary 10, 2022
Lazy loading, infinite scrolling, scroll based animations, and performant scroll events are all perfect examples of Intersection Observer in action.
Read moreJanuary 3, 2022
Event listeners appear simple at first, but they have an incredible level of depth that most people completely ignore. This article will cover everything you need to know about event listeners so you can avoid bugs and write better code for your projects.
Read moreDecember 27, 2021
Pseudo elements are an essential piece of CSS knowledge that you need to understand in order to create advanced designs.
Read moreDecember 20, 2021
There are countless ways to size and space out elements in CSS, but all those techniques involve the box model which is why learning the box model is crucial to learning CSS.
Read moreDecember 13, 2021
requestAnimationFrame is the best way in JavaScript to play smooth and efficient animations and in this article I will show you exactly how to use requestAnimationFrame.
Read moreDecember 6, 2021
CSS selectors are easy to get started with but hard to master since there are so many options which is why I created this ultimate guide to teach you not only the basics, but also the more advanced CSS selectors you need to know.
Read moreNovember 29, 2021
Map is by far the most used array method and in this article I will explain exactly what it does and why it is so useful.
Read moreNovember 22, 2021
Flexbox is easy to get started with but hard to master which is why I created this ultimate guide to teach you not only the basics, but also the more advanced features of flexbox.
Read moreNovember 15, 2021
ES6 modules are one of the best features added to JavaScript since it makes writing clean code exponentially easier.
Read moreNovember 8, 2021
Async/Await is syntactical sugar that makes working with promises and async code so much easier.
Read moreNovember 1, 2021
You have probably never used the useDebugValue hook, but this hook is incredible at helping you debug your custom hooks.
Read moreOctober 11, 2021
Everyone knows how to add and commit changes, but that is only the start of Git. The Git commands in this article will supercharge your Git skills and save you time.
Read moreSeptember 13, 2021
I promise this will be the best guide on promises you ever read.
Read moreAugust 16, 2021
Building projects from scratch is hard, but if you utilize comments correctly you can make writing projects from scratching trivial.
Read moreAugust 2, 2021
Online courses claim to make you a developer quicker and easier, but are they worth the sometimes astronomical cost?
Read moreJuly 26, 2021
Almost every application needs some way to accept payments so in this article I will show you how to easily configure Stripe in just a few lines of code.
Read moreJuly 5, 2021
Technical debt may seem inevitable, but there are many techniques you can use to manage technical debt.
Read moreJune 14, 2021
React 18 introduces a ton of new features related to performance and loading which you should be excited about.
Read moreJune 7, 2021
HSL is the easiest and best color format to use with CSS, but why exactly is that?
Read moreMay 31, 2021
Understanding how to undo and remove styles in CSS is a skill most developers never learn, but it is incredibly useful.
Read moreMay 24, 2021
CSS logical properties are the new way to write padding, margin, border, and so much more. They will change CSS forever.
Read moreMay 17, 2021
Nodes and elements are very similar in JavaScript, but there are a few important differences to understand.
Read moreMay 10, 2021
How the array reduce function works in JavaScript and how you can use it in your projects.
Read moreMay 3, 2021
What is CORS and how to fix CORS errors.
Read moreApril 26, 2021
Recursion is one of the hardest topics to learn as a new developer, but this is mostly due to confusing explanations and examples. This article will break down recursion in an easy to understand way with concrete and simple examples.
Read moreApril 19, 2021
Programmers learn a ton of math in school, but do you really need to know math to be a programmer?
Read moreMarch 29, 2021
Reference vs value is one of the most complicated topics beginner developers face, but it is much easier than it appears.
Read moreMarch 8, 2021
By using dynamic module imports you can speed up your applications while making the user experience better.
Read moreMarch 1, 2021
If you are unable to make programming fun you will never be able to become a programmer.
Read moreFebruary 8, 2021
Creating objects in JavaScript is something you do all the time so you should know about these enhancements that make creating objects even easier.
Read moreJanuary 25, 2021
This article covers everything you need to know about the CSS transform property and the various transform functions.
Read moreJanuary 18, 2021
Generators are incredibly useful for specific tasks and much easier to use than they appear.
Read moreJanuary 11, 2021
This article explains the difference between null and undefined in depth.
Read moreJanuary 4, 2021
Sets in JavaScript are a specialized type of array that is perfect for unique lists.
Read moreDecember 28, 2020
If you are dealing with nested arrays then you need to know about the Array#flat method.
Read moreDecember 21, 2020
PropTypes are perfect for adding basic type safety to your React project.
Read moreDecember 14, 2020
Creating a responsive video or iframe that maintains its aspect ratio in CSS is much trickier than you may think.
Read moreDecember 7, 2020
Maps in JavaScript are more performant, easier to use, and better equipped than JavaScript objects.
Read moreNovember 30, 2020
JavaScript classList seems straightforward, but there are actually multiple unique methods you probably don't know.
Read moreNovember 9, 2020
A short explanation on how CSS floats are still useful.
Read moreNovember 2, 2020
A short explanation of how to use clamp in CSS.
Read moreOctober 26, 2020
How passing functions to other functions works in JavaScript.
Read moreOctober 19, 2020
How to use data attributes in JavaScript.
Read moreOctober 12, 2020
Get easy and quick React performance with a custom debounce hook.
Read moreOctober 5, 2020
Everything you need to know about NaN in JavaScript.
Read moreSeptember 28, 2020
A quick explanation on what pure functions are and how to use them.
Read moreSeptember 21, 2020
Here are some quick tips you can use to improve your development skills.
Read moreSeptember 14, 2020
Arrow functions are one of the best features added to JavaScript and in this article I will explain everything you need to know about them.
Read moreSeptember 7, 2020
A quick guide on how cross site scripting works and how to ensure your site is not vulnerable.
Read moreAugust 31, 2020
Due to modern JavaScript features we no longer need to use immediately invoked function expressions.
Read moreAugust 24, 2020
An in depth analysis of how to use destructuring and the spread operator with objects and arrays.
Read moreAugust 17, 2020
An in depth analysis of all the differences between cookies, localStorage, and sessionStorage.
Read moreAugust 10, 2020
These are my 10 favorite keyboard shortcuts that I use everyday as a programmer.
Read moreAugust 3, 2020
Everything you need to know about the difference between double and triple equals in JavaScript.
Read moreJuly 27, 2020
This article breaks down everything you need to know about CSS calc to take your CSS skills to the next level.
Read moreJuly 20, 2020
An in depth look at every aspect of the useLayoutEffect React hook.
Read moreJuly 13, 2020
You have probably heard of hoisting but what exactly is it and how does it work.
Read moreJuly 6, 2020
Do you wish you could format dates like this: '2 days ago', 'yesterday'. Well with JavaScript internationalization it is incredibly easy.
Read moreJune 29, 2020
Every method you need to know to center elements in CSS.
Read moreJune 22, 2020
A simple explanation of how to take advantage of dynamic imports to make your site load faster.
Read moreJune 15, 2020
An in depth explanation of why you should be using the template tag.
Read moreJune 8, 2020
An in depth look at every aspect of the the useReducer hook in React.
Read moreJune 1, 2020
An in depth look at every aspect of the the context API and the useContext hook in React.
Read moreMay 25, 2020
This article covers everything you need to know about BEM in order to start using BEM to clean up and organize your CSS styles.
Read moreMay 18, 2020
Everything You Need To Know About The Ternary Operator In JavaScript.
Read moreMay 11, 2020
An in depth look at every aspect of refs and the useRef hook in React.
Read moreMay 4, 2020
An in depth look at every aspect of the useMemo and useCallback React hooks.
Read moreApril 27, 2020
An in depth look at every aspect of the useEffect React hook.
Read moreApril 20, 2020
An in depth look at every aspect of the useState React hook.
Read moreApril 13, 2020
You are used to trading time for money at your job, but trading your money for time is just as important if not more important.
Read moreApril 6, 2020
While not everyone should be a programmer I think it is crucial that everyone learns at least the basics of programming.
Read moreMarch 30, 2020
Learn all about how triangles can be created and manipulated in CSS.
Read moreMarch 23, 2020
Animation fill mode is the single most important property of CSS animations to understand so in this article I will be breaking down exactly how to use animation fill mode and what it does.
Read moreMarch 16, 2020
Null coalesce is a new JavaScript language feature which makes assigning default values for null/undefined incredibly easy.
Read moreMarch 9, 2020
Optional chaining is a new JavaScript language feature which will revolutionize how null and undefined are handled.
Read moreMarch 2, 2020
Exploring the power of tagged template literals.
Read moreFebruary 24, 2020
A brief explanation of N + 1 queries and how to avoid them.
Read moreFebruary 17, 2020
Everything you need to know about CSS custom properties.
Read moreFebruary 10, 2020
A brief explanation of magic numbers in code and why they are bad.
Read moreFebruary 3, 2020
An in depth breakdown of how CSS specificity works.
Read moreJanuary 27, 2020
Multiline text overflow fading and dynamic expand/collapse buttons are difficult to create so in this article I show you a simple way to do both.
Read moreJanuary 20, 2020
A quick explanation of the differences between var, let, and const.
Read moreJanuary 13, 2020
An explanation of what semantic versioning is and why it is important.
Read moreJanuary 6, 2020
An explanation of guard clauses and how they can be used to clean up complex nested conditional logic.
Read moreDecember 30, 2019
An in depth tutorial on the @supports CSS at-rule, and how it can be used to write modern CSS without breaking older browser support.
Read moreDecember 23, 2019
An explanation of the difference between standard, async, and defer script tag loading, and which is the best to use.
Read moreDecember 16, 2019
React portal lets components be rendered outside their parent component which is incredibly useful in specific scenarios explained in depth in this article.
Read moreDecember 9, 2019
Middleware in Express is one of the easiest ways to create DRY and well written code which is why it is crucial to know how to use and write good middleware.
Read moreDecember 2, 2019
Storing state in React is difficult to do right, but by storing state as locally as possible it can be a lot easier.
Read moreNovember 25, 2019
A brief explanation of why fitness and physical health is so important, especially for programmers.
Read moreNovember 18, 2019
A simple step by step guide on how to learn any new technology or topic quickly and efficiently.
Read moreNovember 11, 2019
A quick explanation of how to write custom hooks and why they are so useful.
Read moreNovember 4, 2019
The quickest way to have corrupt out of sync state is by storing derived state.
Read moreOctober 28, 2019
A detailed description of the steps needed to deliver an effective code review, even if it is just for your own code.
Read moreOctober 21, 2019
A quick breakdown of exactly how to use data attributes with CSS to create dynamic content.
Read moreOctober 14, 2019
A breakdown of why the common practice of using class selectors in JavaScript makes code impossible to refactor, and what you should do instead.
Read moreOctober 7, 2019
A detailed breakdown of what short circuiting is, how it works, and why it is important.
Read moreSeptember 30, 2019
Two simple ways to use ES6 modules with Node.js.
Read moreSeptember 23, 2019
A quick tip on how to easily test any site for colorblind accessibility.
Read more