This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Windows | |
| Thumbs.db | |
| desktop.ini | |
| # OS X | |
| .DS_Store | |
| .Spotlight-V100 | |
| .Trashes | |
| ._* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # After Ubuntu 16.04, Systemd becomes the default. | |
| # It is simpler than https://gist.github.com/Doowon/38910829898a6624ce4ed554f082c4dd | |
| [Unit] | |
| Description=Jupyter Notebook | |
| [Service] | |
| Type=simple | |
| PIDFile=/run/jupyter.pid | |
| ExecStart=/home/phil/Enthought/Canopy_64bit/User/bin/jupyter-notebook --config=/home/phil/.jupyter/jupyter_notebook_config.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import collections | |
| from marshmallow import ValidationError | |
| from umongo.fields import BaseField | |
| import numpy as np | |
| from json import JSONEncoder | |
| from ..._units import units as units_quantity | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "always_show_minimap_viewport": true, | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/SublimeLinter/base16-ocean.light (SL).tmTheme", | |
| "default_line_ending": "unix", | |
| "font_size": 12, | |
| "ignored_packages": | |
| [ | |
| "Anaconda", | |
| "Monokai Extended", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <domain type='kvm' id='1'> | |
| <name>Win8-HTPC-OVMF</name> | |
| <uuid>a2c7ea78-f49a-ef5b-6b16-521d098d40c9</uuid> | |
| <metadata> | |
| <vmtemplate xmlns="unraid" name="Windows 10" icon="windows.png" os="windows10"/> | |
| </metadata> | |
| <memory unit='KiB'>8388608</memory> | |
| <currentMemory unit='KiB'>8388608</currentMemory> | |
| <memoryBacking> | |
| <nosharepages/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## SublimeText Workspace | |
| *.sublime-workspace | |
| ## Main PDF file | |
| main.pdf | |
| ## Core latex/pdflatex auxiliary files: | |
| *.aux | |
| *.lof | |
| *.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| start on filesystem or runlevel [2345] | |
| stop on shutdown | |
| description "Jupyter / IPython Notebook Upstart script" | |
| script | |
| export HOME="/home/phil/Notebooks"; cd $HOME | |
| echo $$ > /var/run/ipython_start.pid | |
| exec su -s /bin/sh -c 'exec "$0" "$@"' phil -- /home/phil/Enthought/Canopy_64bit/User/bin/jupyter-notebook --config='/home/phil/.jupyter/jupyter_notebook_config.py' | |
| end script |
NewerOlder