Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on Gatsby

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

npm install -g gatsby-cli

gatsby develop

Jupyter/Lab Notebooks

https://www.gatsbyjs.com/plugins/@gatsby-contrib/gatsby-transformer-ipynb/

https://dev.to/teaglebuilt/new-gatsby-theme-powered-by-jupyter-1mkl

https://blog.logrocket.com/converting-jupyter-notebooks-blog-posts-gatsby/

References

https://www.youtube.com …

The Elegant Theme for Pelican

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

https://elegant.oncrashreboot.com/

https://elegant.oncrashreboot.com/add-search

Parsing YAML in Python

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. PyYAML (YAML 1.1 currently) and ruamel.yaml (YAML 1.2) are 2 Python libraries for parsing YAML. PyYAML is more widely used.

  2. PyYAML is preferred over json for serialization and deserialization for multiple reasons.

    • PyYAML is a superset of json.