Skip to content

Instantly share code, notes, and snippets.

View gaberilde's full-sized avatar
💭
Doing a bit of stuff when i have time i might work on GabrieloRomTools&more Soon

Gabrielo gaberilde

💭
Doing a bit of stuff when i have time i might work on GabrieloRomTools&more Soon
View GitHub Profile
@cellularmitosis
cellularmitosis / README.md
Last active June 18, 2024 19:00
QEMU PowerPC G4 OS X Tiger (10.4) setup
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active July 18, 2024 22:51
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 July 10, 2024 10:08
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>
@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]))