Skip to content

Instantly share code, notes, and snippets.

@nitish6174
Last active May 12, 2021 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitish6174/cec823556b21d439e5c74288cfdf69b0 to your computer and use it in GitHub Desktop.
Save nitish6174/cec823556b21d439e5c74288cfdf69b0 to your computer and use it in GitHub Desktop.

Remove trailing whitespace from files

sed -i 's/[ \t]*$//' folder/*/*.py

Convert Jupyter notebook to PPT

# General use-case
jupyter nbconvert --to slides filename.ipynb
# Code-free conversion
jupyter nbconvert --to slides filename.ipynb --TemplateExporter.exclude_input=True --TemplateExporter.exclude_output_prompt=True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment