$ python3 -m pdb myscript.py $ python3| sudo apt install virtualenv | |
| sudo apt install virtualenvwrapper | |
| # if workon does not work, try restarting the terminal | |
| workon # no existing virtual environments (c.f. lsvirtualenv) | |
| mkvirtualenv --python=$(which python) myfirst # init Python 2 virtualenv | |
| #New python executable in /home/don/.virtualenvs/myfirst/bin/python | |
| #Installing setuptools, pip, wheel...done. | |
| # === (myfirst) $ prompt begins |
| sudo apt update | |
| sudo apt upgrade | |
| # Basic tools | |
| sudo apt install curl pdftk asciidoc tmux git | |
| # tmuxifier https://github.com/jimeh/tmuxifier | |
| git clone --depth=1 https://github.com/jimeh/tmuxifier.git ~/.tmuxifier | |
| # add path via .bashrc -- export PATH="$HOME/.tmuxifier/bin:$PATH" |
| "use strict" | |
| const m = require("mithril") | |
| const Sample = { | |
| currentMark: `# h1 Heading | |
| ## h2 Heading | |
| ### h3 Heading | |
| #### h4 Heading | |
| ##### h5 Heading | |
| ###### h6 Heading |