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
rem to disable private dns | |
adb shell settings put global private_dns_mode off | |
rem to enable private dns with hostname (example with dns.adguard.com) | |
adb shell settings put global private_dns_mode hostname | |
adb shell settings put global private_dns_specifier dns.adguard.com |
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
# Simple Snake Game in Python 3 for Beginners | |
# By @TokyoEdTech | |
import turtle | |
import time | |
import random | |
delay = 0.1 | |
# Score |
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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
Streaming Setup Recommendations | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
1) Deactivate AntiVirus Software during Streaming | |
2) Open Audio->Speaker and set the Quality to 16Bit / 44100 (CD Quality) | |
3) Tweak Advanced Energy Settings->Multimedia | |
4) Open System->Services and stop Services which are unneeded for Streaming. | |
5) Start OBS with the parameter --enable-gpu | |
6) Start Streaming Software (FFMPEG / OBS) with "Aboveormal" Priority | |
7) Remove unused Protocols/Clients within Network Adapter settings. |
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
# Sample script using midi device to control Blackmagic ATEM Upstream Key Chroma settings | |
# Uses these 2 projects | |
# https://ianmorrish.wordpress.com/v-ise/atem/ | |
# https://github.com/Psychlist1972/Windows-10-PowerShell-MIDI | |
# | |
add-type -path 'documents\windowspowershell\SwitcherLib.dll' | |
Import-Module ".\Documents\WindowsPowerShell\PeteBrown.PowerShellMidi.dll" | |
#region ATEM settings | |
$Global:atem = New-Object SwitcherLib.Switcher("192.168.1.8") | |
$atem.Connect() |