Hello World
Published
•1 min read
Search for a command to run...

A micro primer for the Sleep No More experience in New York City

If you want to exhaustively check an enum (or a literal) and have Mypy tell you when you forgot a case, you can write yourself a tiny utility function: from typing import NoReturn def unreachable(v: NoReturn) -> NoReturn: raise AssertionError() ...

And how it relates to useCallback

This is mostly a rephrased version of React's official documentation on Lists and Keys with some additional examples. React allows specifying a key property on a component. It lets React identify components and track their identities. Iterating over ...
