This file contains 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/env python3 | |
# Copyright (c) 2023 Opus-X | |
# URL: https://gist.github.com/opus-x/bd125599350b5625c17bcad539ec54c1#file-pymrc-py | |
import sys | |
import requests | |
from bs4 import BeautifulSoup | |
import re | |
import csv |
This file contains 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
package main | |
import ( | |
"fmt" | |
"io" | |
"net/http" | |
"os" | |
"strings" | |
) |
This file contains 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
@echo off | |
rem usb connection | |
echo ======================================= | |
echo Starting Android Debug Bridge Daemon... | |
echo ======================================= | |
2>nul adb kill-server | |
adb start-server | |
echo | set /p="Checking for a connected device... " | |
>nul adb get-state |
This file contains 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
@echo off | |
REM Copyleft 2020-2023, Opus-X (Windows 7-11 - 32/64bit) | |
REM Check arguments (without start prompt only) | |
IF NOT "%~1"=="" IF NOT EXIST "%~1" EXIT /B 0 | |
REM Clean-up Windows Temp foler | |
IF DEFINED TEMP ( | |
RMDIR /S /Q %TEMP% >NUL 2>&1 | |
MKDIR %TEMP% >NUL 2>&1 |
This file contains 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
################################################################################## | |
# ELIMINATE SPOTIFY ADS (VERSION 1.2 - 8.5) - ABANDONED FOR NOW # | |
################################################################################## | |
# | |
# NOTE: SOMETIMES ONLY ANNOUNCEMENT OF AN AD WHILE USING APP VERSION 7.5-7.9?-8.x. | |
# USING AN OFFICIAL OLDER VERSION SOLVES THIS. TEST IT (APKMIRROR). THIS WILL NOT | |
# OCCUR USING CHROMECAST / GOOGLE HOME. | |
# | |
# COULD NOT SOLVE THE AUDIO AD INRO/OUTRO IN THE APP. | |
# SUGGESTIONS? WRITE A COMMENT BELOW. |