My Software Development Tool Kit

Recently I switched to using ThinkPad E15 laptop and had to install all the applications I use on a daily basis. Ubuntu is my go to operating system.

To cut back time thinking to come up with the list of all applications I need, I thought of listing ’em down in a blog post. I’m falling in love in Ubuntu everyday I use it.

Cerebral debugger

Download Cerebral debugger (snap package) and install using the snap command.

sudo snap install /path/to/my-snap.snap --dangerous

Composer

Download and install Composer globally.

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '906a84df04cea2aa72f40b5f787e49f22d4c2f19492ac310e8cba5b96ac8b64115ac402c8cd292b8a03482574915d1a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer

cURL

To download Oh My Zsh, cURL is required. Install cURL using the following command.

sudo apt install curl

Git

Download and install Git using the following command.

sudo apt install git

KSnip

Install KSnip using Snap.

sudo snap install ksnip

Local

Download and Install Lhttps://localwp.com/ocal.

sudo apt install ./local-6.x.x-linux.deb

Obsidian

Download and Install Obsidian.

sudo snap install --dangerous obsidian_0.x.x_amd64.snap

Peek

Install Peek.

sudo apt install peek

Slack

Install Slack using Snap.

sudo snap install slack --classic

VS Code

Install VS Code using Snap.

sudo snap install code --classic

Zoom Client

Install VS Code using Snap.

sudo snap install zoom-client

Zsh

Install Zsh.

sudo apt install zsh

Oh My Zsh

Oh My Zsh is downloaded using cURL. Since cURL is already installed, we could download Oh My Zsh.

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Leave a Reply

Your email address will not be published. Required fields are marked *