pacman -S curl docker ebtables ethtool wget unzip
Also cfssl is needed but available on AUR, using pacaur
pacaur -S cfssl
| # This will enter any virtualenvironment when there is a pipfile | |
| # to be found in the current directory or a directory higher up | |
| # in the hierarchy. It will exit if none is found, and switch if | |
| # You cd into a different pipenv. | |
| # Append this to your bashrc and it will work whenever you cd around | |
| function search_up_pipfile { | |
| ORIG_DIRECTORY=$PWD | |
| if ! [[ -z $VIRTUAL_ENV ]]; then |
| object ReadSample extends App { | |
| /** | |
| * The readable trait defines how objects can be converted from a string | |
| * representation to the objects instance. For most of the standard types | |
| * we can simply use the toType function of String. | |
| */ | |
| trait Readable[T] { | |
| def read(x: String): T | |
| } |