TIL 2020-09-03
-
ReactJS docs with hooks - Converting React class components to use hooks for better code organization.
-
Regex101 - Online regex tester and debugger with explanations.
-
Regexr - Interactive regular expression tool for learning and testing.
-
Pandas Performance Tip - It’s much faster to use Pandas’ filters with the
&
and|
operators than combining conditions withzip
. Use intermediate dataframes and multiple.loc
calls instead ofzip
withany
orall
.