Skip to content

Instantly share code, notes, and snippets.

@rjfpeters
rjfpeters / radarr_update-movies.sh
Created June 2, 2020 06:40
Script to update the movies in the radarr library
#!/bin/sh
RADARR_API_KEY=""
RADARR_HOST=""
RADARR_PORT="7878"
EXCLUE_FILENAMES_CONTAINING="PP-SHRUNK"
################################################################################################
# Progress bar function
prog() {
@opus-x
opus-x / Spotify_Eliminate_Advertisements
Last active June 26, 2024 02:22
Eliminate Spotify Advertisements + Complete Server List
##################################################################################
# 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.
@shmup
shmup / torrents.md
Last active June 15, 2024 20:01
transmission blocklist guide

Transmission Blocklist

The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.

It's as simple as downloading and installing the latest client:

@chanibal
chanibal / README.md
Last active October 16, 2019 08:52
An utility to add BOM to UTF-8 files

Addbom project moved

Project moved from gist to full GitHub project: chanibal/addbom.

@mpapi
mpapi / whenever.sh
Last active March 14, 2023 12:46
A simple shell script that uses inotify in Linux to run shell commands whenever files matching a pattern are changed.
#!/bin/sh
#
# Usage: whenever.sh [pattern] [command]
#
# Executes a command whenever files matching the pattern are closed in write
# mode. "{}" in the command is replaced with the matching filename (via xargs).
# Requires inotifywait from inotify-tools.
#
# For example,