You may want to use AdGuard's DNS over HTTPS[^2] service if you
- Want to make it harder for your ISP to know what websites you are requesting
- Want to block most traditional ads from your web browsing experience across your entire PC
- Open PowerShell
| #!/bin/bash | |
| # | |
| # Script to create MySQL db + user | |
| # | |
| # @author Raj KB <[email protected]> | |
| # @website http://www.magepsycho.com | |
| # @version 0.1.0 | |
| ################################################################################ |
| ################################################################################## | |
| # 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. |
| # based on https://gallery.technet.microsoft.com/scriptcenter/Get-FileMetaData-3a7ddea7 | |
| function Get-FileMetaData | |
| { | |
| <# | |
| .SYNOPSIS | |
| Get-FileMetaData returns metadata information about a single file. | |
| .DESCRIPTION | |
| This function will return all metadata information about a specific file. It can be used to access the information stored in the filesystem. |
| #!/bin/bash | |
| # | |
| # INFO | |
| # | |
| # This works if sonarr and radarr are set up to have a Category of sonarr and radarr respectively | |
| # If you are using other Categories to save your automated downloads, update the script where you see: | |
| # "movies"|"series"|"music"|"general") | |
| # This script will not touch anything outside those Categories |