[jupyter] Re: publishing a jupyter nb

2019-07-10 Thread Tony Fast
There are quite a few solutions because notebooks are so flexible. A past approach I used was to a single github repo that had the structure of a python project. This approach makes notebooks publishable on Github

[jupyter] Re: how to present slides with nbviewer?

2019-05-21 Thread Tony Fast
Click the present! An uri template would look like https://nbviewer.jupyter.org/format/slides/github/{username}/{repo}/blob/{branch}/{dir}/{notebook_name}.ipynb For example:

[jupyter] Re: How to design JupyterLab extension that reacts to pandas function calls

2018-09-18 Thread Tony Fast
You could likely achieve this with a custom profiler . The profiler would provide you with the calling function and the return value; you'd have to implement the other business logic. MonkeyType