This file contains 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
### CUSTOM ### | |
export PATH="$HOME/.local/bin:$HOME/bin:$PATH" | |
# display environment | |
export DISPLAY=:0 | |
export TERM=xterm-256color | |
# alacritty | |
source $HOME/extra/alacritty/extra/completions/alacritty.bash |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Remove output from existing Jupyter Notebooks. | |
Modified from remove_output by Minrk, damianavila, gabraganca. | |
References: | |
[0]: https://github.com/jupyter/nbformat | |
[1]: http://nbformat.readthedocs.org/en/latest/index.html |
This file contains 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
% ARFF_READ - Read content of an ARFF file to a MATLAB's struct array. | |
% | |
% [DATA, relname, nomspec] = ARFF_READ(arff_file) | |
% arff_file => input file (.arff / .arff.gz extension) | |
% relname => relation name (string) | |
% DATA => struct array representing data and attributes (n x attrs) | |
% nomspec => struct array defining nominal-specification attributes | |
% | |
% NOTES: | |
% See ARFF_WRITE to read notes about relname and nomspec. |