Created
December 29, 2019 13:02
-
-
Save sizhky/d0f84c7d71bc9c39ba4c0183ba5b755a to your computer and use it in GitHub Desktop.
~/.local/share/jupyter/nbextensions/snippets/snippets.json
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
{ | |
"snippets" : [ | |
{ | |
"name" : "example", | |
"code" : [ | |
"# This is an example snippet!", | |
"# To create your own, add a new snippet block to the", | |
"# snippets.json file in your jupyter nbextensions directory:", | |
"# /nbextensions/snippets/snippets.json", | |
"import this" | |
], | |
"name" : "backup", | |
"code" : [ | |
"notebook = 'overfit'", | |
"!jupyter nbconvert {notebook}.ipynb", | |
"!mkdir -p htmls/{notebook}", | |
"!mv {notebook}.html htmls/{notebook}/`date +\"%H:%M-%d.%b.%Y\"`.html" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment