Skip to content

Commit

Permalink
Remove Skip Cell Execution
Browse files Browse the repository at this point in the history
`%script false` does not work as intended in latest Jupyter version
  • Loading branch information
NirantK committed Oct 18, 2018
1 parent 7c330cd commit 8cd5a01
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions README.md
Expand Up @@ -17,7 +17,6 @@ Found useful by Nobel Laurates and more:
* [Sanity Checks](#sanity-checks)
* :star: [nbdime](#nbdime) - Better `git diff` for Jupyter
* [Markdown Printing](#markdown-printing) - Use formatted Markdown in your print statements
* [Skip Cell Execution](#skip-cell-execution) - Jupyter magic to mark code as work in progress
* [Find currently running cell](#find-currently-running-cell) - javascript snippet which adds a keyboard shortcut to find currently executing cell
* [Better Mindset](#better-mindset) - covers broader Python recommendations
* [Plotting and Visualization Tips](#plotting-and-visualization)
Expand Down Expand Up @@ -209,20 +208,6 @@ def printmd(string, color=None):
printmd("**bold and blue**", color="blue")
```

## Skip Cell Execution
To Skip A Cell From Running e.g. mark it as work in progress

Add at the top of the cell:

```
%%script false
some multiline code that you want to skip for a time being
(e.g. work in progress)
without commenting out / deleting cell
goes here
```

## Find currently running cell

Add this snippet to the start of your notebook. Press `Alt+I` to find the cell being executed right now. This does not work if you have enabled vim bindings:
Expand Down

0 comments on commit 8cd5a01

Please sign in to comment.