https://github.com/voronenko/znotebook
Jupyter based notes environment I use locally instead of Evernote
https://github.com/voronenko/znotebook
Last synced: about 1 year ago
JSON representation
Jupyter based notes environment I use locally instead of Evernote
- Host: GitHub
- URL: https://github.com/voronenko/znotebook
- Owner: Voronenko
- Created: 2018-03-13T09:40:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T09:54:23.000Z (over 8 years ago)
- Last Synced: 2025-04-15T01:14:02.903Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
```sh
#!/bin/bash
set -e
mkdir -p ~/z_personal_notes
cp *.ipynb ~/z_personal_notes
virtualenv -p python3 ~/.virtualenvs/project_notes
source ~/.virtualenvs/project_notes/bin/activate
pip3 install jupyterlab
pip3 install bash_kernel
python3 -m bash_kernel.install
pip3 install iplantuml
```
zsh integration:
```
alias znotes='workon project_notes && cd ${ZNOTES_PATH-~/z_personal_notes} && jupyter lab'
```
Desktop integration:
```sh
#!/bin/bash
set -e
mkdir -p ~/apps/nteract
wget -o nteract-0.8.3-x86_64.AppImage https://github.com/nteract/nteract/releases/download/v0.8.3/nteract-0.8.3-x86_64.AppImage
chmod +x nteract-0.8.3-x86_64.AppImage
cp ./znotes.desktop ~/.local/share/applications/
cp ./nteract.sh ~/apps/nteract
```
Example of notebook:
```
In Ipython, first,
import iplantuml
then, create a cell like,
%%plantuml
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
@enduml
```