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
• VS Code: https://code.visualstudio.com/ | |
• PowerShell Setup for VS Code: http://mikefrobbins.com/2017/08/24/how-to-install-visual-studio-code-and-configure-it-as-a-replacement-for-the-powershell-ise/ | |
• Bracket Colorizer: https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer | |
PowerShell Profile in VS Code: https://wagthereal.com/2017/08/25/visual-studio-code-powershell-profile/ (edited) |
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
#!/bin/bash | |
# | |
# Quick and dirty script to hit the Radarr API and rename any movies ... | |
RADARR_API_KEY="xxxxxxxx" | |
RADARR_HOST="127.0.0.1" | |
RADARR_PORT="7878" | |
################################################################################################ |
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
::QB 2018 | |
netsh int ipv4 add excludedportrange tcp store=persistent startport=56728 numberofports=1 | |
netsh int ipv4 add excludedportrange udp store=persistent startport=56728 numberofports=1 | |
netsh int ipv4 add excludedportrange tcp store=persistent startport=55378 numberofports=5 | |
netsh int ipv4 add excludedportrange udp store=persistent startport=55378 numberofports=5 | |
::QB 2017 | |
netsh int ipv4 add excludedportrange tcp store=persistent startport=56727 numberofports=1 | |
netsh int ipv4 add excludedportrange udp store=persistent startport=56727 numberofports=1 | |
netsh int ipv4 add excludedportrange tcp store=persistent startport=55373 numberofports=5 |