Skip to content

Instantly share code, notes, and snippets.

View developer-vs's full-sized avatar

Vladimir Semenovich developer-vs

View GitHub Profile
@developer-vs
developer-vs / Readme.md
Last active October 20, 2020 05:50
How to install Oracle Java 13 (JDK 13) on Ubuntu

Oracle JDK

Important notice regarding Oracle Java 11 and newer: the Oracle JDK license has changed 
starting April 16, 2019. The new license permits certain uses, such as personal use and 
development use, at no cost -- but other uses authorized under prior Oracle JDK licenses 
may no longer be available. 

A FAQ is available here: 
https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html . 
@developer-vs
developer-vs / install_java10.sh
Created September 27, 2018 23:26
Install Java 10 on Ubuntu
sudo add-apt-repository ppa:linuxuprising/java
sudo apt-get update
sudo apt-get install oracle-java10-installer
java -version && javac -version
@developer-vs
developer-vs / adb_update.sh
Created May 22, 2018 20:19
This script will update adb & fastboot to the latest version
#!/bin/bash
wget https://dl.google.com/android/repository/platform-tools-latest-linux.zip
unzip \platform-tools-latest-linux.zip
sudo cp platform-tools/adb /usr/bin/adb
sudo cp platform-tools/fastboot /usr/bin/fastboot