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
# this code writen by Cemu0 | |
# no Copyright or license | |
import keyboard | |
import time | |
string = "your typing things here" | |
keyboard.wait('end') | |
for i in string: | |
if i == ' ': | |
keyboard.press_and_release('space') |
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
sudo -i | |
apt-get install software-properties-common | |
add-apt-repository universe | |
apt-get update | |
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat | |
#The jetson already has docker installed | |
#curl -fsSL get.docker.com | sh | |
curl -sL "https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh" | bash -s -- -m qemuarm-64 |