Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on Deno
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Add the following into the file .vscode/settings.json under the root directory of your project.
{
"deno.enable": true,
}
Jupyter Kernel
Deno ships with a built-in …
Tips on nbconvert
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Converting too many notebooks at the same (multiprocessing) causes
zmq.error.ZMQError: Address already in use. The simple way to fix this issue is to limit the number of processes converting …
Public Jupyter/JupyterLab Hosts
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Google Firebase Studio
You can use notebooks after installing the jupyter extension and the programming lanuage that you want to use in Jupyter notebook.
Google Cloud Shell
Technically speaking, Google Cloud …
Format Python Code Using Black
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Installation
pip3 install -U black[jupter]
Usage
The following code formats Python files and Jupyter/Lab Notebooks under the current directory.
black ./
References
Tips on Jupyter-Book
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
xinstall jb -ic
Configuration
xinstall jb -c creates a copy of configuration file _config.yml in the current directory.
By default,
The configuration file _config.yml in the current directory (if …