Skip to content

Instantly share code, notes, and snippets.

@vttc08
vttc08 / update.sh
Created October 23, 2024 22:17
Update sponsorblock from a faster mirror manually.
#!/bin/bash
# Manually update the sponsorTimes database via sb.minibomba.pro which is a much faster and up to date server. The official SponsorBlock rsync is slow and also incremental updates do not work.
# The full database import that is the most accurate takes 500-800s (excluding the download), this method takes less than 15s and it only compromises the accuracy of segments that has been updated prior to the last full import.
DOCKER_CT="postgres-sb-mirror"
THEPATH=~/docker/sponsorblock
URL="https://sb.minibomba.pro/mirror/sponsorTimes.csv.zst"
echo $(date)
@vttc08
vttc08 / configuration.yml
Last active October 16, 2024 04:50
Authelia rules and configuration file
theme: "auto"
log:
level: "debug"
totp:
disable: false
algorithm: "SHA1"
digits: 6
period: 30
@vttc08
vttc08 / gamesave.ps1
Created August 14, 2024 22:44
Powershell Script Template for Backing Up Game Saves
# Global Configuration
$server=$(cat $HOME/gamesave)
# Common places
$documents = $([Environment]::GetFolderPath("MyDocuments"))
$downloads = $(New-Object -ComObject Shell.Application).NameSpace('shell:Downloads').Self.Path
$desktop = $([Environment]::GetFolderPath("Desktop"))
$appdata = $env:appdata # Roaming
$localappdata = $env:localappdata # Local
@vttc08
vttc08 / policies.json
Last active January 15, 2025 05:23
Firefox Basic policies.json For First Time Setup
{
"policies": {
"ExtensionSettings": {
"[email protected]": {
"installation_mode": "force_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
}
},
"NoDefaultBookmarks": true,
"DisableTelemetry": true,
@vttc08
vttc08 / activate.bat
Created February 23, 2023 02:47
make your laptop download nzbget, qbittorrent, wget, internetdownload manager even with your laptop lid closed and tucked away, this example is nzbget
:: this script will activate your laptop to download and change power settings so it will continue to download with the lid closed
:: change the lid closure action do nothing
powercfg /setACvalueIndex scheme_current sub_buttons lidAction 0
powercfg /setDCvalueIndex scheme_current sub_buttons lidAction 0
:: disable sleep timeout
powercfg /Change standby-timeout-ac 0
powercfg /Change standby-timeout-dc 0