Skip to content

Instantly share code, notes, and snippets.

View choonchernlim's full-sized avatar
👻
I... AM... HUNGRY! SEND FOOD!

Choon-Chern Lim (Mike) choonchernlim

👻
I... AM... HUNGRY! SEND FOOD!
View GitHub Profile
@choonchernlim
choonchernlim / update.sh
Last active September 23, 2022 20:57
Configuring Tools in Chromebook
#!/bin/bash
echo "Installing/Updating VSCode..."
VSCODE_DEB_FILE="${HOME}/vscode.deb"
curl -L "https://go.microsoft.com/fwlink/?LinkID=760868" > "${VSCODE_DEB_FILE}"
sudo apt-get -y install "${VSCODE_DEB_FILE}"
rm "${VSCODE_DEB_FILE}"
echo "Installing/Updating Google SDK..."
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list