Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on YAML
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
General Tips and Traps
- YAML is much better alternative to JSON. TOML is another good alternative to YAML.
Ranges in YAML
https://stackoverflow.com/questions/48199439/use-range-with-stepsize-in-yaml-file
YAML for Rust
Please …
Tips on ssh-keygen
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Use the following command to generate new RSA keys without prompt questions.
ssh-keygen -q -y -t rsa -N '' -f ~/.ssh/id_rsa
Tips on BigQuery
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Introduction to SQL in BigQuery
Data Types
Questions
-
Can you set Vim keybindings for editors?
-
how to connect to a BigQuery …
`ifelse` on Pandas Series
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Series.apply + Lambda Function¶
DataFrame.apply + Lambda Function¶
axis=1: apply the lambda function on each row
List Comprehension¶
numpy.where¶
numpy.where is vectorized ifelse.
Tips on the jupyterlab-myst Extension
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
- The very first run of MyST markdown in a JupyterLab cell might fail to work. Just rerun it and it should work.