GUI-based Mind Mapping Tools
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Built-in Flowchart in Office Tools
Most office tools (MS, Google, etc.) has built-in Flowchart support. It is suggested that you use the built-in flowchart if you a such an office tool …
Approximate Nearest Neighbor Search
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on PlantUML
Physical World Modeling and Computer Vision
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Speed up Python Using Native Code
Tips and Traps¶
- It is never a good idea to do pre-mature optimization. Always profile (please refer to Profile Performance of Python Applications and Python Profiler for JupyterLab Notebooks) your code before you optimize it. If you do decide to optimize you Python code, there are multiple approaches. First, think about whether you can improve your algorithm. Please refer to Python Performance Tips