If you don't use `bash` as your shell, and want to use someone else's bash scripts, that don't have a shebang at the top, then you should be doing:
```
> bash other_script.sh
```
and not
```
./other_script.sh
```
If you don't use `bash` as your shell, and want to use someone else's bash scripts, that don't have a shebang at the top, then you should be doing:
```
> bash other_script.sh
```
and not
```
./other_script.sh
```
If you have more than ~30 ish cells or ~500 ish lines in your Jupyter Notebook, then you need to ask yourself some serious questions.
Tips:
• Move library functions into separate files
• Adhere to the Single Responsibility Principle
• 1 Jupyter Notebook per thing
• Don't be afraid to refactor!
• If you don't know how, please learn
• Spaghetti code WILL cause you problems later
#Jupyter #JupyterNotebooks #OtherPeoplesCode #Is #Terrible #Research #SOLID #Principles #Programming #Python
// THIS IS THE FORKED CHILD