Skip to content

Instantly share code, notes, and snippets.

View AytuRed's full-sized avatar

Ayetullah Ercel AytuRed

View GitHub Profile
@ericdennisforever
ericdennisforever / HowToCompileAndroidEumlatorLKM.txt
Last active January 30, 2025 09:56
How to compile a Linux kernel module for Android Emulator(LDPLAYER/NOX)
- LDPlayer ver 9.0.45(9)
Android version 9
Kernel 4.4.146 #1 Thu Apr27 10:42:33 (ST 2023)
Build Number PQ3A 190705.003 release keys
$modinfo vboxsf.ko
vermagic: 4.4.146 SMP preempt mod_unload modversions
- To compile a linux kernel module:
git clone https://android.googlesource.com/kernel/goldfish/ -b android-goldfish-4.4-dev
@TameemS
TameemS / debloatLDPlayer.md
Last active April 25, 2025 17:12
Debloating LDPlayer

Inspired by this

More of my guides: Debloating MEMu - Debloating Nox (Updated)

This mainly applies to LDPlayer9. They will probably work on the low end options (like LDPlayer5) but not guaranteed.

Debloating LDPlayer

This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.

  1. Download LDPlayer, preferably an offline version from the version history
@alx-xlx
alx-xlx / uiautomator2-termux-setup.sh
Last active May 19, 2022 11:04
uiautomator2-termux-setup
pkg upgrade -y
pkg install git -y
pkg install python -y
pip install cython
pkg install libxml2 libxslt -y
pkg install -y python ndk-sysroot clang make libjpeg-turbo -y
pkg install clang -y
pip install lxml
pip install --pre uiautomator2
# New Type of Neural Network
class GeneticNeuralNetwork(Sequential):
# Constructor
def __init__(self, child_weights=None):
# Initialize Sequential Model Super Class
super().__init__()
# If no weights provided randomly generate them
if child_weights is None:
# Layers are created and randomly generated
layer1 = Dense(4, input_shape=(4,), activation='sigmoid')
@Pulimet
Pulimet / AdbCommands
Last active April 26, 2025 13:51
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
@bjoern-r
bjoern-r / Huawei_E3372_openwrt.md
Last active April 22, 2025 15:48
How to use a Huawei E3372 on OpenWRT

HOWTO use a Huawei E3372 on OpenWRT

This modem is also sold as a MegaFon M150-2 USB dongle

Needed Software

Install the needed packages via opkg tool

opkg update