This file contains hidden or 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
settings put secure sysui_nav_bar "space,recent;home;back,space" |
This file contains hidden or 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
umount /dev/block/mmcblk0p38 | |
resize2fs -f /dev/block/mmcblk0p38 1536M | |
e2fsck -d /dev/block/mmcblk0p38 |
This file contains hidden or 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
su | |
pm disable com.google.android.setupwizard |
This file contains hidden or 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
var ids = [4,5,6,7,8,9,10,11,12,13,14] | |
ids.forEach(function (id) { | |
if(id) { | |
fetch("http://192.168.0.1/goform/goform_set_cmd_process", {"credentials":"include","headers":{},"referrer":"http://192.168.0.1/index.html","referrerPolicy":"no-referrer-when-downgrade","body":"isTest=false&goformId=DELETE_SMS&msg_id=" + id + "¬Callback=true","method":"POST","mode":"cors"}); | |
} | |
}) |
This file contains hidden or 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
com.mediatek.gba | |
com.mediatek.ims | |
com.android.cts.priv.ctsshim | |
com.gd.mobicore.pa | |
com.tct.privacymode | |
com.google.android.youtube | |
com.tct.diagnostics.overlay | |
com.google.android.ext.services | |
com.android.providers.telephony | |
com.google.android.googlequicksearchbox |
This file contains hidden or 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
pm uninstall com.gameloft.android.GloftDMKF | |
pm uninstall com.gameloft.android.GloftPDMF | |
pm uninstall com.gameloft.android.GloftSMIF | |
pm disable com.facebook.services | |
pm disable com.tcl.ota | |
pm uninstall ru.yandex.searchplugin | |
pm disable com.facebook.katana | |
pm disable com.facebook.system | |
pm uninstall ru.sberbankmobile | |
pm disable com.facebook.appmanager |
This file contains hidden or 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 | |
sudo rmmod saa7134-alsa | |
sudo rmmod saa7134 | |
sudo modprobe saa7134 card=121 tuner=55 | |
sudo v4l2-ctl -i 2 -f 0 | |
sudo scantv -a |
This file contains hidden or 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
#include <ESP8266WiFi.h> | |
#include <ESP8266WebServer.h> | |
#include <ESP8266mDNS.h> | |
#include <IRremoteESP8266.h> | |
#include <IRsend.h> | |
#include <WiFiClient.h> | |
MDNSResponder mdns; | |
IRsend irsend(14); | |
ESP8266WebServer server(80); |
This file contains hidden or 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
#include <IRremote.h> | |
IRsend irsend; | |
const uint32_t ledPin = 2; | |
const uint32_t btnPwr = 0x20250AF; | |
const uint32_t btn1 = 0x202807F; | |
const uint32_t btn2 = 0x20240BF; | |
const uint32_t btn3 = 0x202C03F; | |
const uint32_t btn4 = 0x20220DF; |
This file contains hidden or 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
wget https://www.deb-multimedia.org/pool/main/d/deb-multimedia-keyring/deb-multimedia-keyring_2016.8.1_all.deb -O /tmp/deb-multimedia-keyring.deb | |
sudo dpkg -i /tmp/deb-multimedia-keyring.deb | |
rm /tmp/deb-multimedia-keyring.deb | |
sudo sh -c 'echo "deb https://www.deb-multimedia.org buster main non-free" >> /etc/apt/sources.list' | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install -y libfdk-aac-dev libomxil-bellagio-dev libx264-dev libasound2-dev libmp3lame-dev autoconf automake build-essential libfreetype6-dev libtool pkg-config texinfo zlib1g-dev git | |
cd ~ | |
git clone https://github.com/ffmpeg/ffmpeg -b release/4.2 | |
cd ffmpeg/ |