Skip to content

Instantly share code, notes, and snippets.

View TheJoshGriffith's full-sized avatar

Joshua Griffith TheJoshGriffith

View GitHub Profile
@TheJoshGriffith
TheJoshGriffith / h313x96qroot.md
Created January 29, 2024 09:37
H313 X96Q Mini Quick Root Guide

Requirements:

Steps:

  1. Connect your ATV to your network, get its IP address, enable USB debugging and toggle USB0 debug interface
  2. adb connect <ip address>:5555
  3. adb -s <ip address> install ./Magisk-v25.2.apk
package uk.me.jig.jrmp;
import org.json.*;
import java.net.URL;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Scanner;
/**
Selecting your gear
Introduction
The equipment you use to vape needs to be carefully selected to meet your requirements. Your gear will determine your flavour, cloud production, throat hit and the temperature of your vape. Getting the right gear is crucial to improving your vaping experience, and keeping you off the analogues. In this page you won’t find details on modern, cutting edge technology, the market changes so fast that it’s impossible to keep up with all the new products. What you will see, however, is a list of products at the time of writing, and a rough description of how they behave and what sort of vape you can expect, but most importantly why they vape in that way. I will not discuss cig-a-likes in this article as although they are part of our world, they are the very first baby step.
In the interest of shortness, I will make the assumption that you are already aware of the differences between [Mechanical Mod]s, [Box Mod]s, and [eGo stick]s, as well as the differences between [Rebuildable Tan
/**
* If the parameter passed to the method is numerical or can be converted to a numerical value,
* we return true, otherwise we return false
*/
public boolean canConvertToInteger(String value)
{
try
{
Integer.parseInt(value);
}