This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run from an Jupyter IPython 3 Notebook cell (recent Jupyter version) | |
from IPython.paths import locate_profile | |
profile_path = locate_profile(get_ipython().profile) | |
from notebook.services.config import ConfigManager | |
cm = ConfigManager(profile_dir=profile_path) | |
cm.update('livereveal', { | |
'theme': 'solarized', | |
'transition': 'linear', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Add live slideshow to Jupyter (thru Conda, using RISE) | |
# RISE is based on reveal.js, can (also) be found on https://github.com/damianavila | |
conda install -y -c damianavila82 rise==4.0.0b1 | |
jupyter nbextension install rise --py --sys-prefix | |
jupyter nbextension enable rise --py --sys-prefix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pip | |
pip.main(['install', '-q', 'mobilechelonian']) | |
import os | |
os.symlink('/home/users/jads-shared/programming2018spring', 'shared') |
NewerOlder