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
Write-Host "AWON will now disable all of the windows envasive tools that inhibit user privacy." | |
# Disable Windows 11 Tracking Functions | |
# Disable Telemetry | |
Write-Host "Disabling Telemetry..." | |
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Value 0 -Type DWord -Force |
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
if(typeof runDelete === 'undefined') { | |
function runDelete(backoff = 0) { | |
// How many photos to delete? | |
// Put a number value, like this | |
// const maxImageCount = 5896 | |
let maxImageCount = "ALL_PHOTOS"; | |
// Selector for Images and buttons | |
let ELEMENT_SELECTORS = { | |
checkboxClass: '.ckGgle', |
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
<?php | |
/** | |
* rPi4 KVM using | |
* DDC, | |
* a USB Switcher:https://amzn.to/3IAunJR | |
* Flirc: https://amzn.to/3EjM7qj | |
* and webhooks | |
* | |
* use debian based image | |
* install flirc cli |
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/env bash | |
echo Install Dependencies | |
if [ "$(uname)" == "Darwin" ]; then | |
brew install ffmpeg gifscile imagemagick | |
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then | |
apt update && apt install -y ffmpeg gifsicle imagemagick | |
fi |
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
<?php | |
/** | |
This is a simple php script I wrote to automate converting | |
from h264 mp4 with a missing webm audio track to a muxed | |
hevc/h265 mp4 file using a mac or linux with php, and | |
ffmpeg installed first. | |
It automatically handles if the source file has no audio and will still convert to h265. |
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
<?php | |
// Config: Update This especially the CAPS | |
$title = "S3 File Upload"; | |
$disclaimer = "Send us files"; | |
$bucketName = "BUCKET"; | |
$AWSAccessKeyId = "ACCESS_KEY"; | |
$AWSSecretAccessKey = "ACCESS_SECRET"; | |
$folder = "uploaded"; | |
$region = "REGION"; | |
$acl = 'private'; |