comverser / examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NVM

# place this after nvm initialization!
autoload -U add-zsh-hook
load-nvmrc() {
  [[ -a .nvmrc ]] || return
  local node_version="$(nvm version)"
  local nvmrc_path="$(nvm_find_nvmrc)"

  if [ -n "$nvmrc_path" ]; then
    local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")

    if [ "$nvmrc_node_version" = "N/A" ]; then
      nvm install
    elif [ "$nvmrc_node_version" != "$node_version" ]; then
      nvm use
    fi
  elif [ "$node_version" != "$(nvm version default)" ]; then
    echo "Reverting to nvm default version"
    nvm use default
  fi
}
add-zsh-hook chpwd load-nvmrc
load-nvmrc

install

  • graphic card driver
  • browsers: chrome, brave
  • vscode
  • hwp
  • slack
  • discord
  • nvm
  • anaconda
  • printer driver (optional)

unpacking archive with Korean file names

unzip -O cp949 koreanFileNames.zip

How do I add an executable to my search path?

  1. Create a folder called bin in your home directory.
mkdir ~/bin
  1. Add ~/bin to your PATH for all sessions of Bash (the default shell used inside of the terminal).
vim ~/.zshrc
export PATH="/home/$USER/bin:$PATH"
  1. Add either the executable files themselves OR symlinks to the executable into ~/bin
source ~/.zshrc

share

About


Languages

Language:Svelte 35.4%Language:JavaScript 19.9%Language:TypeScript 19.8%Language:CSS 14.6%Language:HTML 7.0%Language:EJS 3.1%Language:Shell 0.0%