Connect to device via ADB
- adb connect <ip:port>
Install the APK to the device
- adb -s <ip:port> install -r <app.apk>
{ | |
"default": { | |
"firstScene": "kitchen", | |
"autoLoad": true, | |
"compass": false, |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: unity-cache | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: unity |
import requests | |
def download_file_from_google_drive(id, destination): | |
def get_confirm_token(response): | |
for key, value in response.cookies.items(): | |
if key.startswith('download_warning'): | |
return value | |
return None |
alias gitlog="git log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | cat" |