Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Special Numbers in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Python Profiler for JupyterLab Notebooks
%time¶
Measue the execuation time of the code ONCE.
%timeit¶
Measure the execuation time of the code (accurately) by running it MULTIPLE TIMES and taking the average.
%prun | %%prun¶
-D: output the profiling results into a file
so that you can other tools (e.g., snakeviz) to visualize it.
Noticd that %prun and %%prun are based on cProfile
Tips on TypeScript Compiler
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://stackoverflow.com/questions/39416691/webpack-ts2304-cannot-find-name-map-set-promise
https://stackoverflow.com/questions/30439869/can-typescript-compile-to-es6-code
Named Parameters in TypeScript
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/Microsoft/TypeScript/issues/467
JavaScript Alternatives to Shell
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/shelljs/shelljs
https://tutorialedge.net/javascript/nodejs/executing-shell-scripts-with-nodejs/