- You must have developer mode enabled
- Go into Settings > System > Developer Options
- Enable "Disable absolute volume"
- Reboot phone
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
| @echo off | |
| :: Confirm running as administrator | |
| fltmc >nul 2>&1 || ( | |
| echo This batch script requires administrator privileges. Right-click on | |
| echo the script and select "Run as Administrator". | |
| goto :die | |
| ) | |
| :: Change this path if you are using Community or Professional editions |
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
| # Warning | |
| Clear-Host | |
| Write-Output "Run this script on the computer you want to access via RDP" | |
| Write-Output "" | |
| # Ask | |
| Write-Output "Remote address can be an IP address or network with CIDR" | |
| Write-Output "Example: 192.168.0.5 or 192.168.0.0/24" | |
| Write-Output "" | |
| $RemoteAddress = Read-Host "Remote Address" |
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 | |
| find . -type f -exec chmod 644 {} \; | |
| find . -type d -exec chmod 755 {} \; | |
| chmod 755 wp-content; | |
| find wp-content/ -type f -exec chmod 644 {} \; | |
| find wp-includes/ -type f -exec chmod 644 {} \; | |
| mkdir wp-content/uploads; find wp-content/uploads -type f -exec chmod 755 {} \; | |
| chmod 444 wp-config.php; |
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 | |
| sudo apt update | |
| sudo apt install curl wget git -y | |
| curl -fsSL https://get.docker.com -o get-docker.sh | |
| sudo sh get-docker.sh | |
| sudo usermod -aG docker $(whoami) | |
| rm get-docker.sh -f | |
| sudo apt install docker-compose -y |
This script has moved to the asheroto/IsPortActive repository.
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
| ; WindowsKey-V shortcut to paste text with no formatting | |
| ; (like Paste Special > Plain Text, but faster and works everywhere) | |
| ; for AutoHotKey | |
| #v:: | |
| ClipSaved := ClipboardAll | |
| tempClipboard := clipboard | |
| Clipboard := tempClipboard | |
| Send ^v | |
| Sleep, 500 | |
| Clipboard := ClipSaved |
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
| apt-get remove docker docker-engine docker.io containerd runc | |
| apt-get update | |
| apt-get install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common -y | |
| curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
| add-apt-repository \ |
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
| <# | |
| .SYNOPSIS | |
| Publishes dotnet packages for supported .NET 5 compatible operating systems | |
| .DESCRIPTION | |
| Publishes dotnet packages for supported .NET 5 compatible operating systems | |
| .NOTES | |
| Created by : asheroto | |
| Date Coded : 01/26/2020 | |
| More info: : https://gist.github.com/asheroto/b8c82ea515e8baa569807108d1d9ed0a | |
| #> |