Skip to content

Instantly share code, notes, and snippets.

View gxanshu's full-sized avatar
rising everyday

Anshu gxanshu

rising everyday
View GitHub Profile
@gxanshu
gxanshu / install-android-sdk-in-ubuntu.md
Created August 4, 2025 09:43 — forked from EmadAdly/install-android-sdk-in-ubuntu.md
install JDK and Android SDK on Linux Ubuntu

install openjdk

sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk
@gxanshu
gxanshu / script.sh
Created July 18, 2024 15:38
Change Sublime Text icon in Linux (Ubuntu)
#!/usr/bin/env bash
##
## Replace Sublime Text icons in Ubuntu
##
if [ "$(whoami)" != "root" ]; then
echo "Script must be run as root, e.g."
echo sudo "$0"
exit 1
fi