- Commonize device trees (To add support for other models)
- Sensors
- Accelerometer
- Ambient light sensor
- Proximity
- Magentometer
- Gyroscope
- Barometer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from requests import get, post, put | |
from time import sleep | |
import hashlib | |
import xml.etree.ElementTree as ET | |
URL = 'https://fritz.box/login_sid.lua?version=2' | |
USERNAME = 'user' | |
PASSWORD = 'password' | |
def main(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/vendor/bin/sh | |
/system/bin/magiskpolicy --live "allow dumpstate cameraserver_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate * * *" | |
/system/bin/magiskpolicy --live "allow dumpstate charon_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate connfwexe_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate credstore_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate ddexe_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate dhkprov_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate dmesgd_exec file *" | |
/system/bin/magiskpolicy --live "allow dumpstate dnsmasq_exec file *" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from math import trunc | |
import sys | |
if len(sys.argv) <= 1: | |
print('pixelpitch.py <width> <height> <size in inch>') | |
quit() | |
width = float(sys.argv[1]) | |
height = float(sys.argv[2]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from selenium.common.exceptions import NoSuchElementException | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.support.ui import Select | |
from selenium.webdriver.support.ui import WebDriverWait | |
import requests | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import json | |
import requests | |
import sys | |
from urllib.parse import unquote | |
# Usage: python unlearningapps.py <ID> | |
# You can get the ID from the URL or | |
# by observing the network tab in your | |
# browser if it is embedded |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from internetarchive import upload | |
from random import randint | |
from requests import get | |
import hashlib | |
import sys | |
def info(text): print(f"\033[94mINFO: \033[00m{text}") | |
def warning(text): print(f"\033[93mWARNING: \033[00m{text}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/data/data/com.termux/files/usr/bin/bash | |
function init() { | |
yes | pkg update | |
pkg upgrade -y | |
pkg install -y ffmpeg jq python-pip termux-api which vim openssh dnsutils traceroute iproute2 file | |
pip install yt-dlp | |
while [ ! -d "/data/data/com.termux/files/home/storage/pictures" ]; do | |
echo "Waiting for permissions to be granted" | |
termux-setup-storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
cidr = sys.argv[1:][0] | |
octetts = ["0"] * 32 | |
ip_dec = [] | |
for i in range(int(cidr)): | |
octetts[i] = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
(git --no-pager config --global --list | grep "trailer.changeid.key=Change-Id") && TRAILER_SET=1 | |
[ -n $TRAILER_SET ] && git config --global --unset "trailer.changeid.key" | |
AUDIO=AUDIO.LA.9.0.r1-07800-lanai.0 | |
CAMERA=CAMERA.LA.4.0.r2-07400-lanai.0 | |
CV=CV.LA.2.0.r1-04900-lanai.0 | |
DISPLAY=DISPLAY.LA.4.0.r2-08000-lanai.0 | |
GRAPHICS=GRAPHICS.LA.14.0.r1-08200-lanai.0 |
NewerOlder