Skip to content

Instantly share code, notes, and snippets.

0 0.0
11.2135919357 0.0
11.2135919357 1.31920580374
15.4180208471 1.31920580374
15.4180208471 2.63841160748
19.4046196536 2.63841160748
19.4046196536 3.95761741123
22.707522112 3.95761741123
22.707522112 5.27682321497
25.948042535 5.27682321497
Traceback (most recent call last):
File "/home/ant6/INZ/modulators/src/findworker.py", line 411, in run
self.plot_functions()
File "/home/ant6/INZ/modulators/src/findworker.py", line 464, in plot_functions
show=common.check_option('show_sobp_plot'))
File "/home/ant6/INZ/modulators/src/plotting.py", line 122, in plot_SOBP
pylab.savefig(filename + '.' + plot_format, format=plot_format)
File "/usr/lib/python3/dist-packages/matplotlib/pyplot.py", line 561, in savefig
return fig.savefig(*args, **kwargs)
File "/usr/lib/python3/dist-packages/matplotlib/figure.py", line 1422, in savefig
@antnieszka
antnieszka / dallas.zsh-theme
Last active August 29, 2015 14:22
Dallas theme for oh-my-zsh
# Personalized!
# Grab the current date (%D) and time (%T) wrapped in {}: {%D %T}
DALLAS_CURRENT_TIME_="%{$fg[white]%}{%{$fg[yellow]%}%D %T%{$fg[white]%}}%{$reset_color%}"
# Grab the current version of ruby in use (via RVM): [ruby-1.8.7]
if [ -e ~/.rvm/bin/rvm-prompt ]; then
DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}"
else
if which rbenv &> /dev/null; then
DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg[white]%}]%{$reset_color%}"