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!
Tips on dbeaver
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Links
General Tips
- Standalone dbeaver can install some eclipse plugins.
Vim Keybindings
You can install vrapper as vim keybindings on dbeaver.
-
Help -> Install Software
-
Add vrapper repository http://vrapper …
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