$ uname -r
| #!/bin/bash | |
| ####################################################################### | |
| # This is a helper script that keeps snapraid parity info in sync with | |
| # your data and optionally verifies the parity info. Here's how it works: | |
| # 1) Checks for size 0 .nfo files (plex) | |
| # 2) Calls diff to figure out if the parity info is out of sync. | |
| # 3) If parity info is out of sync, AND the number of deleted or changed files exceed | |
| # X (each configurable), it triggers an alert email and stops. (In case of | |
| # accidental deletions, you have the opportunity to recover them from |
| // ==UserScript== | |
| // @name Goodbye new FB ads | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Remove facebook ads | |
| // @author Maurizio Carboni | |
| // @match https://www.facebook.com/* | |
| // @grant none | |
| // ==/UserScript== |
windows_update_toggle.bat v10.1 final
~ one script to rule them all!
~ block build upgrades and/or automatic updates without breawking Store downloads and Defender protection updates
~ there is a lot of focus on Defender updates working independently, unlike any other updates "management" solution
~ ifeo safe blocking with no destructive changes of ownership, deleting files, removing tasks, or over-blocking
~ toggle everything from the Desktop right-click context menu!
but wait, there is more:
~ hide/unhide/install update lists with counter at the Desktop right-click context menu!
Previous update toggle batch suite scripts have been overwritten on pastebin, but will still be available here:
The purpose of this document is to make recommendations on how to browse in a privacy and security conscious manner. This information is compiled from a number of sources, which are referenced throughout the document, as well as my own experiences with the described technologies.
I welcome contributions and comments on the information contained. Please see the How to Contribute section for information on contributing your own knowledge.
| ######################################################################### | |
| ### USAGE: rdiff path/to/left,path/to/right [-s path/to/summary/dir] ### | |
| ### ADD LOCATION OF THIS SCRIPT TO PATH ### | |
| ######################################################################### | |
| [CmdletBinding()] | |
| param ( | |
| [parameter(HelpMessage="Stores the execution working directory.")] | |
| [string]$ExecutionDirectory=$PWD, | |
| [parameter(Position=0,HelpMessage="Compare two directories recursively for differences.")] |
| #! /usr/bin/python | |
| # Dispatch - synchronize two folders | |
| import os | |
| import filecmp | |
| import shutil | |
| from stat import * | |
| class Dispatch: |