December 29, 2019
1install chrome2 wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -3 echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list4 sudo apt update5 sudo apt install -y google-chrome-beta67yarn8 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -9 echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list10 sudo apt update && sudo apt install yarn1112nvm13 sudo apt-get update14 sudo apt-get install build-essential checkinstall libssl-dev15 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash16 close/open terminal17 command -v nvm (should output 'nvm')1819node20 check for installed versions: nvm ls21 check for available versions: nvm ls-remote22 sudo apt-get update23 sudo apt-get install build-essential checkinstall libssl-dev24 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash25 ou’ll have to close and reopen the terminal first, but you can verify a successful installation by using command -v nvm. The command will output nvm if everything worked.2627 Once you’re set up, installing updated versions of Node is a breeze. You can check what versions are currently installed with nvm lsand see what is available to install by using nvm ls-remote.2829 Download, compile, and install newer versions of Node with nvm install #.#.#, obviously substituting the #s for the Node version you want. You can tell nvm which version to use in each new shell with nvm use #.#.# and set a default with alias: nvm alias default node.3031vscode32 curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg33 sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/34 sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'35 sudo apt-get update36 sudo apt-get install apt-transport-https37 sudo apt-get install code3839brave40 sudo apt install curl41 curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key add -42 UBUNTU_CODENAME=$( (grep DISTRIB_CODENAME /etc/upstream-release/lsb-release || grep DISTRIB_CODENAME /etc/lsb-release) 2>/dev/null | cut -d'=' -f2 )43 echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ bionic main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-bionic.list44 sudo apt update45 sudo apt install brave-browser brave-keyring4647google-earth48 sudo apt install gdebi-core49 wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb50 sudo gdebi google-earth-pro-stable_current_amd64.deb5152skype53 wget https://repo.skype.com/latest/skypeforlinux-64.deb5455telegram56 sudo add-apt-repository ppa:atareao/telegram57 sudo apt-get update58 sudo apt-get install telegram
Written by mcdog who lives in Central Portugal and passes the time playing with code and milking chickens. You should follow him on Twitter