TIL: Python Performance Optimization and Advanced Profiling

Today I learned about advanced Python performance optimization techniques, modern profiling tools, and practical strategies for identifying and eliminating performance bottlenecks.

September 9, 2020 Â· 16 min

TIL: ReactJS Hooks, Regex Tools, and Pandas Performance

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 with zip. Use intermediate dataframes and multiple .loc calls instead of zip with any or all. ...

September 3, 2020 Â· 1 min