Languages
Cory House
Cory House is eight time Microsoft MVP.
Cory is designing web apps in Kansas City more than twenty years.
Cory is focused on JavaScript and React. Cory is a React and JavaScript expert who believes in clean code, TDD and responsive web UIs.
External Links
Check the latest blog posts of Cory House below
Forms in React 19
July 15, 2024
React 19 has many new form-related features:
… Read on...
Avoid Sprints
March 19, 2023
Sprints create an arbitrary deadline every x days. This creates estimation overhead, and fosters short-term thinking. Instead: 1. Break work down into small tickets. 2. Estimate future flow by tracking the number tickets completed. Simple. Breaking tickets down is naturally … Read on...
13 Reasons Software Development is a Unique, Amazing Career
August 17, 2022
Product managers and designers specify *what* I should build. But, I get to decide *how* to build it. I choose my patterns, libraries, technical approach, workflow, and more. There are infinite ways to solve a given problem. … Read on... 1. Creative freedom.
Stop disabling copy/paste
March 14, 2022
Hey developers, please stop disabling copy/paste in form fields! 🚨 If asked to do so, push back. Please don’t break the … Read on...
Adding Custom Testing Library Queries
January 25, 2021
Testing Library is great. But it’s lacking a few queries I would find useful. Here’s an example of enhancing Cypress Testing Library with a plain function:
React Server Components in 5 Minutes
January 24, 2021
I’m excited about React Server Components. In this post, I will summarize the benefits and limitations in a few quick points. For more details, check out the Facebook team’s announcement video. Render React components in one … Read on... 
The Big Idea
6 Signs a Dev Team is Out of Control
November 11, 2020
“We don’t have time to write tests.”
“We don’t have time for code reviews.”
“We don’t have time to set up a CI server.”
“We don’t have time to automate deploys.”
“We don’t have time to make it accessible.”
“We … Read on...
Formik vs Plain React for Forms – Worth it?
August 19, 2020
I typically use plain React for forms. But I just converted a React form to use Formik. Results (sizes minified):
… Read on...
There are four events that cause a React component to render: When state changes, you can skip the render via: When props change or a parent renders, you can skip … Read on...
Four Ways to Fetch Data in React
July 06, 2020
React is a focused component library. So it has no opinion on how to request remote data. If you’re requesting and sending data to web APIs via HTTP, here are four options to consider. Let’s … Read on... 