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 numpy | |
| import os | |
| import pickle | |
| from itertools import islice | |
| TRACES_DIRECTORY = "traces" | |
| OUTPUT_DIRECTORY = "output" |
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
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # Aldur's zsh-theme | |
| SEGMENT_SEPARATOR=' ' | |
| # Begin a segment | |
| # Takes two arguments, foreground (a colour) and bold (bold or not bold). | |
| prompt_segment() { | |
| [[ $1 != "none " ]] && echo -n "%F{$1}" | |
| [[ $2 == "bold" ]] && echo -n "%B" |
NewerOlder