-
Enable developer settings
-
Enable
Developer settings > USB Debugging
-
Enable
Developer settings > Disable permission monitoring
-
Download Connect Bot app from Google Play
-
In Connect Bot, create a new connection and in Protocol select local, give the profile any nickname, save
-
Open the local connection and write
settings put secure show_rotation_suggestions 0
, hit enter -
The popup is now gone.
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdint.h> | |
#include <raylib.h> | |
int main(){ | |
FILE * pFile; | |
long lSize; |
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
-- ********************************************************************************** -- | |
-- ** ** -- | |
-- ** Minecraft Mining Turtle Ore Quarry v0.6c by AustinKK, Aeolun, nick1n ** -- | |
-- ** --------------------------------------------------- ** -- | |
-- ** ** -- | |
-- ** For instructions on how to use: ** -- | |
-- ** ** -- | |
-- ** http://www.youtube.com/watch?v=PIugLVzUz3g ** -- | |
-- ** ** -- | |
-- ** Change Log: ** -- |
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
//simple_gamepad_hid.h | |
#define REPORT_BYTE_LENGTH 4 // (8 + 16 + 8) / 8 | |
char ReportDescriptor[44] = { | |
0x05, 0x01, // USAGE_PAGE (Generic Desktop) | |
0x09, 0x05, // USAGE (Game Pad) | |
0xa1, 0x01, // COLLECTION (Application) | |
0xa1, 0x00, // COLLECTION (Physical) | |
// ReportID - 8 bits |
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
alias python=python3 | |
alias pip="python3 -m pip" |
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
0x05, 0x01, // Usage Page (Generic Desktop) 0 | |
0x09, 0x04, // Usage (Joystick) 2 | |
0xa1, 0x01, // Collection (Application) 4 | |
0x85, 0x14, // Report ID (20) 6 | |
0x15, 0x00, // Logical Minimum (0) 8 | |
0x25, 0x01, // Logical Maximum (1) 10 | |
0x75, 0x01, // Report Size (1) 12 | |
0x95, 0x20, // Report Count (32) 14 | |
0x05, 0x09, // Usage Page (Button) 16 | |
0x19, 0x01, // Usage Minimum (1) 18 |