Skip to content

Instantly share code, notes, and snippets.

@chillipeper
chillipeper / ubuntu_jammy_dev_setup.sh
Last active February 26, 2023 06:38
Ubuntu 22.04 Workstation Developer Setup --> Tmux + Vim + Docker | Python & Go
#!/bin/bash
# Update repos
sudo apt update
# Upgrade system to latest packages
sudo apt -y upgrade
# Install ubuntu packages
sudo apt install -y cmake vim git curl tmux jq
@chillipeper
chillipeper / ubuntu_focal_dev_setup.sh
Last active February 28, 2021 06:18
Ubuntu 20.04 Workstation Developer Setup --> Tmux + Vim + Docker | Python & Go
#!/bin/bash
# Update repos
sudo apt update
# Upgrade system to latest packages
sudo apt -y upgrade
# Install ubuntu packages
sudo apt install -y cmake vim git curl tmux pipenv jq