This file contains hidden or 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
#!/bin/bash | |
# unbrick android after installing a magisk module that caused a bootloop | |
# boot from magisk-boot.img | |
fastboot boot /path/to/magisk-boot.img | |
# run | |
adb wait-for-device shell magisk --remove-modules |
This file contains hidden or 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
#!/usr/bin/python3 | |
from sys import argv | |
from os.path import isdir, join, getmtime | |
from os import listdir | |
from glob import glob | |
if len(argv) < 2 or not isdir(argv[1]): | |
print('Usage: python3 createplaylists.py <root_directory>') | |
exit(1) |