Skip to content

Instantly share code, notes, and snippets.

View 44kitcaliber's full-sized avatar

Gabriel G. 44kitcaliber

View GitHub Profile
@joshuatz
joshuatz / run_examples.js
Last active May 12, 2024 22:54
Script to clean up YouTube history and bulk-delete videos that mess up the recommendation algorithm
(() => {
// With default shorts filter - dry run mode
new YouTubeHistoryCleaner(undefined, true);
// dryRunMode = off (actually delete stuff)
new YouTubeHistoryCleaner(undefined, false);
// With custom filter, preserving history for certain accounts
const approvedAuthors = [
@Davoleo
Davoleo / spotify.md
Last active June 23, 2025 11:41
An in-depth guide on modding Spotify with updated methods to remove ads, bypass country restrictions and theme the application

Spotify Modding & Guides

This is a collections of script, patches and procedures to mod Mobile and Desktop Spotify Applications.

If you know about something that isn't listed here and you would like it to be feel free to tell me about it in the comments or send an e-mail to [email protected]

Table of Contents

@pxdl
pxdl / nps2pkgi.py
Last active October 2, 2024 13:26
Converts the NoPayStation TSV for PS3 Games to pkgi-ps3 format
import csv
import urllib.request
url = "http://nopaystation.com/tsv/PS3_GAMES.tsv"
print('Downloading PS3_GAMES.tsv...')
urllib.request.urlretrieve(url, 'PS3_GAMES.tsv')
newlist = []
with open('PS3_GAMES.tsv', newline='', encoding="utf8") as csvfile:
listreader = csv.reader(csvfile, delimiter=' ', quotechar='"')
// ==UserScript==
// @name No YouTube Volume Normalization
// @namespace https://gist.github.com/abec2304
// @match https://www.youtube.com/*
// @match https://music.youtube.com/*
// @grant GM_addElement
// @version 2.73beta
// @author abec2304
// @description Enjoy YouTube videos at their true volume
// @run-at document-start
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active August 3, 2025 21:46
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 !

@CatDany
CatDany / ModClass.java
Last active June 28, 2022 21:56
Packets are Easy (by Dany)
@EventHandler
public static void init(FMLInitializationEvent e)
{
// this should be in initialization
PacketHandler.initPackets();
}