Adjusting Jupyter notebook Font Size

For screen presentations, I found the original font-size to be too small. Therefore, adjusting the font size permanently would be nice to have. You can do so by adding a custom Cascading Style Sheet (CSS) to your Jupyter configuration directory (usually in $HOME/.jupyter/). First you add a subdirectory called “custom” to your Jupyter configuration directory …
Continue reading Adjusting Jupyter notebook Font Size

Customizing Jupyter Notebooks for Presentations and Reports

Jupyter Notebooks are ideal for data analysis when using Python. They allow you to analyze the data, while at the same time writing documentation. The data processing and report writing become intertwined: while you explore and analyze the data, you already have a draft of your report at hand. Unfortunately, Jupyter Notebooks are not too …
Continue reading Customizing Jupyter Notebooks for Presentations and Reports

Running a Jupyter Notebook remotely in single line

In order to run a Jupyter Notebook on a remote server (here: SERVER), one usually first opens a shell, logs in on the remote server, starts the jupyter notebook server. Then usually you open a new shell, and forward a local port using ssh. And finally you open the notebook webpage in your browser (here: Firefox). …
Continue reading Running a Jupyter Notebook remotely in single line