I hereby claim:
- I am pastewka on github.
- I am pastewka (https://keybase.io/pastewka) on keybase.
- I have a public key whose fingerprint is 5D9A 2E8D 588C A996 AC0B F767 8FF9 C74C 5FF5 1678
To claim this, I am signing this object:
| /* ====================================================================== | |
| Copyright (2013) Lars Pastewka | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| # Place in $HOME/.config/matplotlib/matplotlibrc | |
| backend : Qt4Agg | |
| font.family : sans-serif | |
| font.sans-serif : Arial Unicode MS | |
| font.size : 10.0 | |
| svg.fonttype : none | |
| xtick.labelsize : 8 # fontsize of the tick labels | |
| ytick.labelsize : 8 # fontsize of the tick labels | |
| pdf.fonttype : 42 # Output Type 3 (Type3) or Type 42 (TrueType) | |
| legend.frameon : False |
| Place fonts in $HOME/.fonts or other directory of choice. | |
| Create file $HOME/.config/fontconfig/fonts.conf with following content: | |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <!-- ~/.fonts.conf for per-user font configuration --> | |
| <fontconfig> | |
| <dir>~/.fonts</dir> | |
| </fontconfig> |
I hereby claim:
To claim this, I am signing this object:
| #! /usr/bin/env python | |
| from socket import gethostname | |
| from mpi4py import MPI | |
| print "Process", MPI.COMM_WORLD.Get_rank(), "of", MPI.COMM_WORLD.Get_size(), "runs on host", gethostname() |
| # Copyright (c) 2015 Lars Pastewka | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files | |
| # (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, | |
| # publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do | |
| # so, subject to the following conditions: | |
| # | |
| # The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| # --rad is "retain all dimensions", makes sure unused dimensions are not deleted | |
| ncks --rad -F -d frame,1,,n input.nc output.nc |
| #! /usr/bin/env python | |
| from __future__ import division, print_function | |
| import sys | |
| from ase.io import NetCDFTrajectory | |
| from atomistica import TabulatedAlloyEAM, KumagaiScr |
| #Label line with line2D label data | |
| def label_line(line,x,label=None,rotation=None,**kwargs): | |
| ax = line.axes | |
| xdata = line.get_xdata() | |
| ydata = line.get_ydata() | |
| if (x < xdata[0]) or (x > xdata[-1]): | |
| print('x label location is outside data range!') | |
| return |
| #! /bin/bash -x | |
| git fetch upstream | |
| git checkout master | |
| git reset --hard upstream/master |