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
| import smtplib, os, logging | |
| import datetime | |
| from email.mime.text import MIMEText | |
| from email.mime.image import MIMEImage | |
| from email.mime.multipart import MIMEMultipart | |
| import numpy as np | |
| import cv2 as cv | |
| import pyglet | |
| from matplotlib import pyplot as plt | |
| from threading import Timer |
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
| #!/usr/bin/env sh | |
| export TARGET=arm-none-eabi | |
| export PREFIX=$HOME/.local | |
| export PATH=$PATH:$PREFIX/bin | |
| export VERSION=7.8.1 | |
| export GDB=gdb-$VERSION | |
| rm -rf $GDB |