google chrome
🐧 Linux User :link: https://doc.ubuntu-fr.org/google_chrome
sudo sh -c 'echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -sudo apt-get install google-chrome-stable🍎 MAC User
🔗 https://www.google.com/chrome/
robot3T
🐧 Linux User :link: https://gist.github.com/abdallahokasha/37911a64ad289487387e2d1a144604ae
Take the correct version, in this exemple we take robo3t-1.2.1-linux-x86_64-3e50a65
wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gztar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gzsudo mkdir /usr/local/bin/robo3tMove the extracted package to usr/local/bin
sudo mv robo3t-1.2.1-linux-x86_64-3e50a65/* /usr/local/bin/robo3tcd /usr/local/bin/robo3t/binsudo chmod +x robo3t ./robo3t✔️ Check if it's correctly installed
./robo3t🚩 Optional: Put robot3T Icon and shortcut
mv icon.png /usr/local/bin/robo3t/bin
In order to create desktop icon for Robo3t, we can make a file in usr/share/applications
sudo vim /usr/share/applications/robo3t.desktopCopy & paste this
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Robo3t
Icon=/usr/local/bin/robo3t/bin/icon.png
Exec="/usr/local/bin/robo3t/bin/robo3t"
Comment=Robo3t
Categories=Development;
Terminal=false
StartupNotify=true
🍎 MAC User
postman
🐧 Linux User
🔗 https://gist.github.com/invinciblycool/ecc1c6e32b581b68932ac7452f4c911c
sudo snap install postmanTake the correct version, in this example we will take 5.3.2 version
tar -xzf Postman-linux-x64-5.3.2.tar.gzsudo mv Postman /opt/Postmansudo ln -s /opt/Postman/Postman /usr/bin/postmanCreate desktop file
cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
# Before v6.1.2
# Icon=/opt/Postman/resources/app/assets/icon.png
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
EOLrm Postman-linux-x64-5.3.2.tar.gz🍎 MAC User :link: https://www.postman.com/downloads/
vscode
🐧 Linux User
🔗 https://linuxize.com/post/how-to-install-visual-studio-code-on-ubuntu-18-04/
sudo apt install software-properties-common apt-transport-https wgetwget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"sudo apt install code🍎 MAC User
🔗 https://code.visualstudio.com/download
Configure code cmd -> https://code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line
Configure the path with VS Code Launch VS Code
Open the Command Palette (Cmd+Shift+P), type 'shell command', and run the Shell Command: Install 'code' command in PATH command.
🚩 Optional: Add all configuratin from ./vscode folder