🏳️🌈
This file contains 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
#!/bin/bash | |
# Configuration | |
OLD_DOMAIN="example.com" | |
NEW_DOMAIN="example.dev" | |
# Check if REPOS_PATH is provided as an argument | |
if [ -n "$1" ]; then | |
REPOS_PATH="$1" | |
else |
This file contains 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 the script throws a policy error, execute it with the command below | |
# Set-ExecutionPolicy Unrestricted -Scope Process -Force -ErrorAction SilentlyContinue; ls -Recurse *.ps*1 | Unblock-File; .\"clearNewTeamsCache.ps1" | |
# Stop Teams Process | |
function Stop-Teams { | |
$teamsProcessName = "ms-teams" | |
$teams = Get-Process -Name $teamsProcessName -ErrorAction SilentlyContinue | |
if ($null -ne $teams){ | |
Write-Host "Teams Process Found, stopping..." -ForegroundColor Yellow | |
Stop-Process -Name $teamsProcessName -Force |
This file contains 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
// ==UserScript== | |
// @name Auto Join w2g.tv Room | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.1 | |
// @description Automatically click the 'Join the Room' button on w2g.tv | |
// @author Thadah D. Denyse | |
// @match *://w2g.tv/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
#!/bin/bash | |
# Define the source and destination directories | |
SRC_DIR="/path/to/folder/" | |
DEST_DIR="/path/to/folder/" | |
# Define audio quality | |
# 0.1 (Highest Quality) - 2 (Lowest Quality) | |
AUDIO_QUALITY=1 | |
AUDIO_SAMPLING=44100 |