Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 os | |
| def nbpathwalk(path): | |
| ''' Walk down a directory path looking for ipynb notebook files... ''' | |
| for path, _, files in os.walk(path): | |
| if '.ipynb_checkpoints' in path: continue | |
| for f in [i for i in files if i.endswith('.ipynb')]: | |
| yield os.path.join(path, f) | |
| import nbformat |
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
| #https://stackoverflow.com/a/3207973/454773 | |
| from nbformat.v4 import new_notebook, new_markdown_cell | |
| import nbformat | |
| import io | |
| import os | |
| import subprocess | |
| import random | |
| import string | |
| #from PyPDF2 import PdfFileMerger, PdfFileReader |
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
| <html><head> | |
| <script type="application/javascript" src="assets/js/jquery-3.3.1.js"></script> | |
| <script type="application/javascript" src="assets/js/showdown.min.js"></script> | |
| <!-- | |
| https://markjs.io/ |
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
| FROM hurricane/dockergui:x11rdp1.3 | |
| #Use an updated build | |
| #FROM psychemedia/dockergui | |
| ######################################### | |
| ## ENVIRONMENTAL CONFIG ## | |
| ######################################### | |
| # Set environment variables |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.