Skip to content

Instantly share code, notes, and snippets.

View gaberilde's full-sized avatar
💭
Working on my site in my free time, some cool projects coming soon, stay tuned!

Gabrielo gaberilde

💭
Working on my site in my free time, some cool projects coming soon, stay tuned!
View GitHub Profile
@kumar-de
kumar-de / install-xfce-gui-and-rdp-on-centos-7.md
Last active September 13, 2024 14:52
Install XFCE GUI and RDP on CentOS 7 #GUI #RDP #CentOS7

Update the system

yum -y install epel-release
yum -y update
yum clean all

Install minimal X Windows system and XFCE Desktop

yum -y groupinstall 'X Window System'
@TameemS
TameemS / debloatMEmu.md
Last active March 27, 2025 15:30
Debloating & Optimizing MEmu

Inspired by this

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

Edit 22/8/2021: I have updated MEmu and it seems like it reinstalls the apps and re-enables the services. Repeat steps 5, 7, 8, and 9 if you update MEmu.

Debloating MEmu

In my experience, Nox can be quite slow and choppy, and looks like I'm not the only person with this problem. A lot of people say that MEmu performs better than Nox, and I could agree with that. I have no chopping issues with it so far. But like Nox, there are kinda shady stuff going on.

@cellularmitosis
cellularmitosis / README.md
Last active February 19, 2025 10:35
QEMU PowerPC G4 OS X Tiger (10.4) setup

Blog 2020/5/7

<- previous | index | next ->

QEMU PowerPC G4 OS X Tiger (10.4) setup

EDIT 2024/12/1: I updated a few of these commands to work with qemu 9.x.

@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active April 1, 2025 07:53
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

Note: This gist may be outdated, thanks to all contributors in comments.

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

@mbleigh
mbleigh / README.md
Last active March 21, 2025 10:15
Firebase Hosting Fetch All Files

Fetch All Files from Firebase Hosting

This script fetches all of the files from the currently deployed version of a Firebase Hosting site. You must be signed in via the Firebase CLI and have "Site Viewer" permission on the site in question to be able to properly run the script.

Running via NPX

npx https://gist.github.com/mbleigh/9c8680cf319ace2f506f57380da66e7d <site_name>
@KaKi87
KaKi87 / awesome-android-x3Free.md
Last active March 31, 2025 23:54
Awesome list — Free, ad-free and in-app-free Android apps

Inspired by Awesome

Awesome

DISCLAIMER : this isn't really an awesome list, I don't care about guidelines, rules and etc. so I don't bother make a real repo and a real pull request.

About this list

This list uses the power of my advanced Google Play search engine to get some free, in-app-free and ad-free apps from it.

@Log1x
Log1x / debloatNox.md
Last active March 26, 2025 01:44
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@kakajika
kakajika / FullscreenOverlayService.java
Last active April 2, 2025 13:39
Android Service implementation with fullscreen overlay window (over status bar & navigation bar)
class FullscreenOverlayService extends Service {
private View overlay;
private WindowManager windowManager;
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@krzys-h
krzys-h / funpackextractor.py
Created March 4, 2018 10:33
FunPack3D .wfa unpacker
import struct
import os
import sys
PACKAGE_HEADER = "<I"
FILE_HEADER = "<32sII"
print("FunPack 3D .WFA unpacker by krzys_h")
if len(sys.argv) != 2:
print("Usage: {} path_to_file.wfa".format(sys.argv[0]))