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
@zed = @zed ? {} | |
@zed.info = do -> | |
#private | |
name = "" | |
getName = -> name | |
setName = (value) -> name = value | |
age = 0 | |
getAge = -> age |
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
#!/bin/sh | |
# This installs the base instructions up to the point of joining / creating a cluster | |
curl -sSL get.docker.com | sh && sudo usermod pi -aG docker | |
sudo dphys-swapfile swapoff && \ | |
sudo dphys-swapfile uninstall && \ | |
sudo update-rc.d dphys-swapfile remove |
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
## Options | |
THEME_PROMPT_PREFIX=${THEME_PROMPT_PREFIX:-''} | |
THEME_VI_INS_MODE_SYMBOL=${THEME_VI_INS_MODE_SYMBOL:-'❖'} | |
THEME_VI_CMD_MODE_SYMBOL=${THEME_VI_CMD_MODE_SYMBOL:-'ᐅ'} | |
## Set symbol for the initial mode | |
THEME_VI_MODE_SYMBOL="${THEME_VI_INS_MODE_SYMBOL}" | |
autoload -Uz vcs_info | |
zstyle ':vcs_info:*' check-for-changes true |